diff --git a/game/guess.py b/game/guess.py index 43b1a56..15e3a57 100644 --- a/game/guess.py +++ b/game/guess.py @@ -2,7 +2,7 @@ # Copyright 2022 - c0de # Licensed under the MIT License (https://opensource.org/licenses/MIT) -# pylint: disable=missing-module-docstring +# pylint: disable=missing-module-docstring,too-few-public-methods from database.models import PlayerModel as Player, GuessModel as Guess from game.base import BaseGameManager diff --git a/game/help.py b/game/help.py index bcda064..3bc0f37 100644 --- a/game/help.py +++ b/game/help.py @@ -2,7 +2,7 @@ # Copyright 2022 - c0de # Licensed under the MIT License (https://opensource.org/licenses/MIT) -# pylint: disable=missing-module-docstring +# pylint: disable=missing-module-docstring,too-few-public-methods from game.base import BaseGameManager diff --git a/game/new_game.py b/game/new_game.py index 337de85..7b12849 100644 --- a/game/new_game.py +++ b/game/new_game.py @@ -2,7 +2,7 @@ # Copyright 2022 - c0de # Licensed under the MIT License (https://opensource.org/licenses/MIT) -# pylint: disable=missing-module-docstring +# pylint: disable=missing-module-docstring,too-few-public-methods from database.models import GameModel as Game from game.base import BaseGameManager diff --git a/game/points.py b/game/points.py index e80f03f..b0bc284 100644 --- a/game/points.py +++ b/game/points.py @@ -2,7 +2,7 @@ # Copyright 2022 - c0de # Licensed under the MIT License (https://opensource.org/licenses/MIT) -# pylint: disable=not-an-iterable,missing-module-docstring +# pylint: disable=not-an-iterable,missing-module-docstring,too-few-public-methods from database.models import PlayerModel as Player from game.base import BaseGameManager