Disable pylint unused-argumet warning on the signal handler

This commit is contained in:
Dmitri Bogomolov 2021-08-02 20:04:08 +03:00
parent a93c0f8417
commit 03d6361a3d
Signed by untrusted user: g1itch
GPG Key ID: 720A756F18DEED13
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ from .manager import Manager
from .listener import Listener
def handler(s, f):
def handler(s, f): # pylint: disable=unused-argument
logging.info('Gracefully shutting down MiNode')
shared.shutting_down = True