StoryCheckTools/entry.py

8 lines
209 B
Python
Raw Normal View History

2024-07-14 10:18:14 +00:00
from PyQt5.QtWidgets import QWidget, QApplication
from sys import argv
2024-07-14 12:25:59 +00:00
from parse.ast_load import global_ast_path, AstParse
2024-07-14 10:18:14 +00:00
2024-07-14 12:25:59 +00:00
tool = AstParse(global_ast_path)
print(tool.generate_time())
tool.peak_storylines()