diff --git a/.gitignore b/.gitignore index 28109ea..7df4802 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,8 @@ .vscode/ -__pycache__ +__pycache__/ input.txt -main.py \ No newline at end of file +main.py +build/ +dist/ +venv/ +app.spec \ No newline at end of file diff --git a/App.py b/App.py index be915f6..d825be5 100644 --- a/App.py +++ b/App.py @@ -35,7 +35,7 @@ def calculate_scheduling_python(input, func): possibles.update(locals()) method = possibles.get(func) output : Output = method(inp) - output.printOutput() + # output.printOutput() return output.Objectify() eel.start("index.html") \ No newline at end of file diff --git a/inputparser.py b/inputparser.py index 25e4bc2..dc3826e 100644 --- a/inputparser.py +++ b/inputparser.py @@ -11,7 +11,7 @@ def getParser(): return InputParser.parser def parse(self, input) -> Input: - print(input) + # print(input) file = input file = file.split('\n')