Fix third-party issues found by stubtest (#6667)

This commit is contained in:
Sebastian Rittau
2021-12-23 00:09:44 +01:00
committed by GitHub
parent b842b21770
commit 9bf2ceb963
4 changed files with 5 additions and 4 deletions

View File

@@ -110,3 +110,4 @@ sqlalchemy.sql.expression.quoted_name.lower
sqlalchemy.sql.expression.quoted_name.upper
sqlalchemy.sql.quoted_name.lower
sqlalchemy.sql.quoted_name.upper
sqlalchemy.util.callable

View File

@@ -17,7 +17,7 @@ from .base import (
_MappedAttribute as _MappedAttribute,
)
__all__ = [
__all__ = (
"EXT_CONTINUE",
"EXT_STOP",
"EXT_SKIP",
@@ -31,7 +31,7 @@ __all__ = [
"MapperProperty",
"PropComparator",
"StrategizedProperty",
]
)
class ORMStatementRole(roles.StatementRole): ...
class ORMColumnsClauseRole(roles.ColumnsClauseRole): ...