Update analyzer.py, api.py and four other files

This commit is contained in:
Richard Bronkhorst
2023-06-20 21:46:05 +02:00
parent 35ea9e2e04
commit 707f142e7a
6 changed files with 180 additions and 62 deletions

View File

@@ -7,11 +7,12 @@ class Base:
store: object
def __init__(self, symbol, store):
self.disable_dirty = False
self.disable_dirty = True
self.store = store
self.symbol = symbol
self.define()
self.disable_dirty = False
def define(self):
pass