Fix change set return type
This commit is contained in:
@@ -14,9 +14,9 @@ class ChangeSet:
|
||||
self.operations.append({ 'operation': 'update', 'type': type, 'id': id, 'properties': properties })
|
||||
return self
|
||||
|
||||
def append(self, other) -> None:
|
||||
def append(self, other):
|
||||
self.operations += other.operations
|
||||
return self
|
||||
|
||||
def compress(self) -> None:
|
||||
def compress(self):
|
||||
return self
|
||||
|
||||
Reference in New Issue
Block a user