Merge pull request #22 from LyfeOnEdge/patch-2

Clean up comments
This commit is contained in:
Ian Burgwin
2020-06-20 19:36:57 -07:00
committed by GitHub

8
gui.py
View File

@@ -11,13 +11,6 @@ import tkinter as tk
import tkinter.filedialog as tkfiledialog import tkinter.filedialog as tkfiledialog
import style import style
# BUTTON_COLOR =
# BUTTON_HIGHLIGHT_COLOR =
# BUTTON_FONT =
# Custom button
class themedFrame(tk.Frame): class themedFrame(tk.Frame):
def __init__(self, frame, **kw): def __init__(self, frame, **kw):
tk.Frame.__init__(self, frame, **kw) tk.Frame.__init__(self, frame, **kw)
@@ -28,7 +21,6 @@ class themedFrame(tk.Frame):
if not kw.get("highlightthickness"): if not kw.get("highlightthickness"):
self.configure(highlightthickness=0) self.configure(highlightthickness=0)
class Button(tk.Label): class Button(tk.Label):
"""Cross-platform button""" """Cross-platform button"""