mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-08-12 19:12:31 +08:00
Add missing __slots__ to third-party packages (#15454)
This commit is contained in:
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user