Open
Description
python is a dynamic language. functions may return classes, and instantiating metaclasses also yields classes.
since we can’t know what a function returns, VariablesInFunctionCheck
should not yield an error if a variable name matches MIXEDCASE_REGEX
, e.g.:
from sqlalchemy.orm import sessionmaker
Session = sessionmaker(bind=engine)