Fix bug
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
class ChangeSet:
|
||||
def __init__(self) -> None:
|
||||
self.added : list[dict[str, str]] = {}
|
||||
self.deleted : list[dict[str, str]] = {}
|
||||
self.updated : list[dict[str, str]] = {}
|
||||
self.added : list[dict[str, str]] = []
|
||||
self.deleted : list[dict[str, str]] = []
|
||||
self.updated : list[dict[str, str]] = []
|
||||
|
||||
def add(self, type: str, id: str) -> None:
|
||||
self.added.append({ 'type': type, 'id': id })
|
||||
|
||||
Reference in New Issue
Block a user