From 4a2a69a9a5c2ff796d7a20c2f923b708e54e0450 Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Fri, 25 Dec 2020 23:43:22 +0100 Subject: [PATCH] Added type hint to main(). --- rcon/gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rcon/gui.py b/rcon/gui.py index a810687..15c860b 100644 --- a/rcon/gui.py +++ b/rcon/gui.py @@ -207,7 +207,7 @@ class GUI(Gtk.Window): # pylint: disable=R0902 Gtk.main_quit(*args, **kwargs) -def main(): +def main() -> None: """Starts the GUI.""" basicConfig(format=LOG_FORMAT)