Skip to content

Commit

Permalink
Fix flake8 convention error
Browse files Browse the repository at this point in the history
  • Loading branch information
94929 committed Oct 6, 2020
1 parent 8be63b7 commit 35a4cd6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modi/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def check_option(*options):
bundle = Debugger()
fin_time = time.time()
print(f'Took {fin_time - init_time:.2f} seconds to init MODI modules')
#for module in bundle.modules:
# for module in bundle.modules:
# module_name = module.module_type.lower()
# print(">>> " + module_name + " = bundle." + module_name + "s[0]")
# exec(module_name + " = module")
Expand Down
4 changes: 3 additions & 1 deletion modi/util/debugger.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@

from _tkinter import TclError
from io import StringIO
from tkinter import Tk, Canvas, Button, Entry, Label
from tkinter import Tk, Canvas, Entry, Label
from tkinter import END, WORD, INSERT, NW
from tkinter.scrolledtext import ScrolledText
if sys.platform == 'darwin':
from tkmacosx import Button
else:
from tkinter import Button

from modi.modi import MODI
from modi.util.msgutil import parse_message
Expand Down

0 comments on commit 35a4cd6

Please sign in to comment.