wrap up coretk type hinting

This commit is contained in:
Huy Pham 2020-01-15 12:59:54 -08:00
parent c1c580cdc4
commit 6ecffc465b
5 changed files with 10 additions and 18 deletions

View file

@ -1,6 +1,6 @@
import tkinter as tk
from tkinter import ttk
from typing import TYPE_CHECKING, Optional
from typing import TYPE_CHECKING
from core.gui.images import ImageEnum, Images
from core.gui.themes import DIALOG_PAD
@ -11,11 +11,7 @@ if TYPE_CHECKING:
class Dialog(tk.Toplevel):
def __init__(
self,
master: tk.Widget,
app: "Application",
title: str,
modal: Optional[bool] = False,
self, master: tk.Widget, app: "Application", title: str, modal: bool = False
):
super().__init__(master)
self.withdraw()
@ -40,7 +36,7 @@ class Dialog(tk.Toplevel):
self.grab_set()
self.wait_window()
def draw_spacer(self, row: Optional[int] = None):
def draw_spacer(self, row: int = None):
frame = ttk.Frame(self.top)
frame.grid(row=row, sticky="nsew")
frame.rowconfigure(0, weight=1)