Clean up comments

This commit is contained in:
Andrew (LyfeOnEdge) (ArcticGentoo)
2020-06-18 20:56:45 -07:00
committed by GitHub
parent 9f69a2195c
commit 58237a0ebe

8
gui.py
View File

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