File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -924,12 +924,15 @@ class ExpireSnapshots(UpdateTableMetadata["ExpireSnapshots"]):
924924 Pending changes are applied on commit.
925925 """
926926
927+ _updates : Tuple [TableUpdate , ...]
928+ _requirements : Tuple [TableRequirement , ...]
929+ _snapshot_ids_to_expire : Set [int ]
930+
927931 def __init__ (self , transaction : Transaction ) -> None :
928932 super ().__init__ (transaction )
929- # Initialize instance-level attributes to avoid sharing state between instances
930- self ._snapshot_ids_to_expire : Set [int ] = set ()
931- self ._updates : Tuple [TableUpdate , ...] = ()
932- self ._requirements : Tuple [TableRequirement , ...] = ()
933+ self ._updates = ()
934+ self ._requirements = ()
935+ self ._snapshot_ids_to_expire = set ()
933936
934937 def _commit (self ) -> UpdatesAndRequirements :
935938 """
You can’t perform that action at this time.
0 commit comments