From 6d8083dd0fea8e9c51b6e251f95c4cc1215b77b5 Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Sat, 28 Jan 2023 13:08:00 +0100 Subject: [PATCH] Remove pylint suppression --- rcon/gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rcon/gui.py b/rcon/gui.py index f781800..d84af01 100644 --- a/rcon/gui.py +++ b/rcon/gui.py @@ -61,7 +61,7 @@ class RCONParams(NamedTuple): command: Iterable[str] -class GUI(Gtk.Window): # pylint: disable=R0902 +class GUI(Gtk.Window): """A GTK based GUI for RCON.""" def __init__(self, args: Namespace):