Skip to content

Commit

Permalink
Update __main__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Beakerboy authored Nov 8, 2023
1 parent 8eb6c89 commit 6ffabd5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/vbaproject_compiler/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,14 @@ def main() -> None:
base_path = os.path.dirname(__file__)
module.add_file(base_path + '/blank_files/Sheet1.cls')
module.normalize_file()
guid = uuid.UUID("0002082000000000C000000000000046")
sheet1.set_guid(guid)
project.add_module(module)
module = DocModule('ThisWorkbook')
module.add_file(base_path + '/blank_files/ThisWorkbook.cls')
module.normalize_file()
guid = uuid.UUID("0002081900000000C000000000000046")
module.set_guid(guid)
project.add_module(module)
project.set_project_id('{9E394C0B-697E-4AEE-9FA6-446F51FB30DC}')
# add the files
Expand Down

0 comments on commit 6ffabd5

Please sign in to comment.