disable too-few-public-methods pylint warning

This commit is contained in:
c0de 2022-12-09 22:30:36 -06:00
parent 43cfb49cd6
commit 97a1ab1b2b
4 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
# Copyright 2022 - c0de <c0de@c0de.dev>
# 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

View File

@ -2,7 +2,7 @@
# Copyright 2022 - c0de <c0de@c0de.dev>
# 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

View File

@ -2,7 +2,7 @@
# Copyright 2022 - c0de <c0de@c0de.dev>
# 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

View File

@ -2,7 +2,7 @@
# Copyright 2022 - c0de <c0de@c0de.dev>
# 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