refactor: source cleanup, exit codes on verify

This commit is contained in:
Dobin
2024-02-16 10:20:05 +00:00
parent 5eddee39ad
commit 60e5065938
4 changed files with 20 additions and 36 deletions
+2 -1
View File
@@ -1,6 +1,7 @@
from model import *
from defs import *
class Project():
def __init__(self):
# User, generating normally
@@ -32,7 +33,7 @@ class Project():
self.generate_asm_from_c: bool = True
self.generate_shc_from_asm: bool = True
self.verify_filename = r'C:\Temp\a'
self.verify_filename: FilePath = r'C:\Temp\a'
project = Project()