From 11ec6ab01fed15ae0bef83157c6892ae200c7a6e Mon Sep 17 00:00:00 2001 From: freiheit Date: Thu, 9 Nov 2023 23:15:31 -0800 Subject: [PATCH] Tell pylint to ignore some things --- mvkdicebot.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mvkdicebot.py b/mvkdicebot.py index 938b78f..18b6b54 100755 --- a/mvkdicebot.py +++ b/mvkdicebot.py @@ -64,6 +64,9 @@ async def roll(ctx, *, dicestr: str): """ # pylint: disable=logging-fstring-interpolation # pylint: disable=consider-using-dict-items + # pylint: disable=too-many-locals + # pylint: disable=too-many-branches + # pylint: disable=too-many-statements logger.debug(f"roll: {dicestr}")