diff --git a/sqlalchemy_utils/functions/orm.py b/sqlalchemy_utils/functions/orm.py index 3c13058..fddbf56 100644 --- a/sqlalchemy_utils/functions/orm.py +++ b/sqlalchemy_utils/functions/orm.py @@ -496,7 +496,7 @@ def get_descriptor(entity, attr): # but not in parent class. return getattr(prop.parent.class_, attr) else: - # Handle synonyms, relationship proeprties and hybrid + # Handle synonyms, relationship properties and hybrid # properties try: return getattr(entity, attr)