fix: fix 'too-many-public-methods' for pylint
This commit is contained in:
parent
625a22c83b
commit
fee44b455a
3 changed files with 2 additions and 3 deletions
|
@ -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,
|
|
||||||
|
|
|
@ -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>`.
|
||||||
|
|
|
@ -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``.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue