fix: fix 'too-many-public-methods' for pylint

This commit is contained in:
Lance Edgar 2025-09-01 14:14:29 -05:00
parent 625a22c83b
commit fee44b455a
3 changed files with 2 additions and 3 deletions

View file

@ -28,4 +28,3 @@ disable=fixme,
too-many-lines, too-many-lines,
too-many-locals, too-many-locals,
too-many-positional-arguments, too-many-positional-arguments,
too-many-public-methods,

View file

@ -35,7 +35,7 @@ from wuttjamaican.batch import BatchHandler
from sideshow.db.model import NewOrderBatch from sideshow.db.model import NewOrderBatch
class NewOrderBatchHandler(BatchHandler): class NewOrderBatchHandler(BatchHandler): # pylint: disable=too-many-public-methods
""" """
The :term:`batch handler` for :term:`new order batches <new order The :term:`batch handler` for :term:`new order batches <new order
batch>`. batch>`.

View file

@ -51,7 +51,7 @@ from sideshow.web.forms.schema import (
log = logging.getLogger(__name__) log = logging.getLogger(__name__)
class OrderView(MasterView): class OrderView(MasterView): # pylint: disable=too-many-public-methods
""" """
Master view for :class:`~sideshow.db.model.orders.Order`; route Master view for :class:`~sideshow.db.model.orders.Order`; route
prefix is ``orders``. prefix is ``orders``.