Add missing __slots__ to third-party packages (#15454)

This commit is contained in:
Semyon Moroz
2026-02-22 20:08:46 +01:00
committed by GitHub
parent 9a9cc1834d
commit b43fc8f6f3
11 changed files with 54 additions and 2 deletions
+2 -1
View File
@@ -21,7 +21,8 @@ class PGSchema(dbschema.DBSchema):
class PGTranslator(SQLTranslator):
dialect: ClassVar[str]
class PGValue(Value): ...
class PGValue(Value):
__slots__: list[str] = []
class PGSQLBuilder(SQLBuilder):
dialect: ClassVar[str]