fix: Address performance regression introduced in #11785 (#20893)

This commit is contained in:
John Bodley
2022-07-28 22:56:39 -07:00
committed by GitHub
parent 3f124d9d67
commit 50d2e5a15d
3 changed files with 19 additions and 11 deletions

View File

@@ -134,7 +134,9 @@ include-naming-hint=no
# List of decorators that produce properties, such as abc.abstractproperty. Add
# to this list to register other decorators that produce valid properties.
property-classes=abc.abstractproperty
property-classes=
abc.abstractproperty,
sqlalchemy.ext.hybrid.hybrid_property
# Regular expression matching correct argument names
argument-rgx=[a-z_][a-z0-9_]{2,30}$