There are sections in a code base I'm currently cleaning up which simply do
raise Exception("foobar")or
try:
    ...
except Exception:
    ...camel-snake-pep8 wants to rename Exception here to exception which is syntactically wrong.
Types should be excluded from being renamed, as PEP8 recommends them to be camel case