Skip to content
This repository was archived by the owner on Mar 31, 2020. It is now read-only.

Commit dd085c6

Browse files
committed
Linting
1 parent d3e081d commit dd085c6

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed

src/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import tkinter as tk
33
from contextlib import suppress
44

5-
from .front import Front
5+
# from .front import Front
66
from .splash import Splash
77
from . import SETTINGS, widget
88

@@ -23,7 +23,7 @@ def __init__(self, *args, **kwds):
2323

2424
self.frame = widget.PrimaryFrame(self)
2525
self.frame.pack(expand=True, fill='both')
26-
26+
2727
self.splash = Splash(self.frame)
2828
self.splash.pack(expand=True, fill='both')
2929
# self.front = Front(self.frame)

src/widget.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,6 @@
11
import tkinter as tk
2-
from configparser import ConfigParser
3-
from . import THEME, IMAGES
42

5-
parser = ConfigParser()
6-
parser.read(THEME)
7-
8-
primary = parser[.get('primary')]
9-
secondary = parser['secondary']
10-
base = parser['base']
3+
from . import IMAGES
114

125

136
class SecondaryFrame(tk.Frame):

0 commit comments

Comments
 (0)