From fee44b455a2ad6a8edb5f6be73bdebb303ca7459 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Mon, 1 Sep 2025 14:14:29 -0500 Subject: [PATCH] fix: fix 'too-many-public-methods' for pylint --- .pylintrc | 1 - src/sideshow/batch/neworder.py | 2 +- src/sideshow/web/views/orders.py | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.pylintrc b/.pylintrc index a0f7d85..7349811 100644 --- a/.pylintrc +++ b/.pylintrc @@ -28,4 +28,3 @@ disable=fixme, too-many-lines, too-many-locals, too-many-positional-arguments, - too-many-public-methods, diff --git a/src/sideshow/batch/neworder.py b/src/sideshow/batch/neworder.py index 292dc8e..0c6cb8c 100644 --- a/src/sideshow/batch/neworder.py +++ b/src/sideshow/batch/neworder.py @@ -35,7 +35,7 @@ from wuttjamaican.batch import BatchHandler 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 `. diff --git a/src/sideshow/web/views/orders.py b/src/sideshow/web/views/orders.py index 2f64e77..7e2bba3 100644 --- a/src/sideshow/web/views/orders.py +++ b/src/sideshow/web/views/orders.py @@ -51,7 +51,7 @@ from sideshow.web.forms.schema import ( 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 prefix is ``orders``.