Skip to content

Commit

Permalink
Fixed pip which wasn't the best way to run
Browse files Browse the repository at this point in the history
  • Loading branch information
Claydough6 committed May 5, 2021
1 parent a0a2053 commit 3b4fa19
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions resolution_gui/gui_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
from ttkthemes import ThemedTk
from tkinter import filedialog

from .resolution_canvas import ResolutionCanvas
from .statement_frame import StatementFrame
from .resolution_engine import ResolutionEngine
from .info_window import InfoWindow
from resolution_canvas import ResolutionCanvas
from statement_frame import StatementFrame
from resolution_engine import ResolutionEngine
from info_window import InfoWindow

class ResolutionGUI():
def __init__(self):
Expand Down
2 changes: 1 addition & 1 deletion resolution_gui/resolution_canvas.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from tkinter import *
from tkinter import ttk

from .clause_frame import ClauseFrame
from clause_frame import ClauseFrame

class ResolutionCanvas(Canvas):
def __init__(self, master, app, **kwargs):
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .gui_main import ResolutionGUI
from gui_main import ResolutionGUI

# start up the app
app = ResolutionGUI()
Expand Down
2 changes: 1 addition & 1 deletion resolution_gui/statement_frame.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from tkinter import *
from tkinter import ttk

from .edit_listbox import EditListbox
from edit_listbox import EditListbox

class StatementFrame(ttk.Frame):
def __init__(self, master, app, **kwargs):
Expand Down

0 comments on commit 3b4fa19

Please sign in to comment.