Skip to content

Commit

Permalink
Created binary executable
Browse files Browse the repository at this point in the history
  • Loading branch information
RhythmDeolus committed Mar 8, 2023
1 parent 7a227ad commit 04e3b2d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
.vscode/
__pycache__
__pycache__/
input.txt
main.py
main.py
build/
dist/
venv/
app.spec
2 changes: 1 addition & 1 deletion App.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
2 changes: 1 addition & 1 deletion inputparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def getParser():
return InputParser.parser

def parse(self, input) -> Input:
print(input)
# print(input)
file = input
file = file.split('\n')

Expand Down

0 comments on commit 04e3b2d

Please sign in to comment.