From f26e76d822a327a9927de634cff9395e7b336c4c Mon Sep 17 00:00:00 2001 From: Fluffy-Bean Date: Wed, 19 Apr 2023 18:07:18 +0000 Subject: [PATCH] :a: --- setup/runner.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/runner.py b/setup/runner.py index 11c1e10..ab8b617 100644 --- a/setup/runner.py +++ b/setup/runner.py @@ -10,7 +10,7 @@ class OnlyLegs(Application): Gunicorn application """ - def __init__(self, options={}): # pylint: disable=W0102 skipcq: PYL-W0231 + def __init__(self, options={}): # skipcq: PYL-W0231 # pylint: disable=W0231, W0102 self.usage = None self.callable = None self.options = options @@ -27,7 +27,7 @@ class OnlyLegs(Application): return cfg @staticmethod - def prog(): # pylint: disable=C0116 skipcq: PYL-E0202 + def prog(): # skipcq: PYL-E0202 # pylint: disable=E0202, C0116 return "OnlyLegs" def load(self):