This commit is contained in:
Andrej730
2024-10-22 11:13:59 +05:00
parent 9eaecdb0a4
commit 71c5e83fa0
10 changed files with 60 additions and 27 deletions
+2 -2
View File
@@ -50,8 +50,8 @@ HEADER_FIELDS = {
class Transaction:
def __init__(self, ifc_file):
self.file = ifc_file
def __init__(self, ifc_file: file):
self.file: file = ifc_file
self.operations = []
self.is_batched = False
self.batch_delete_index = 0