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 })
|
self.operations.append({ 'operation': 'update', 'type': type, 'id': id, 'properties': properties })
|
||||||
return self
|
return self
|
||||||
|
|
||||||
def append(self, other) -> None:
|
def append(self, other):
|
||||||
self.operations += other.operations
|
self.operations += other.operations
|
||||||
return self
|
return self
|
||||||
|
|
||||||
def compress(self) -> None:
|
def compress(self):
|
||||||
return self
|
return self
|
||||||
|
|||||||
Reference in New Issue
Block a user