fix: fix 'too-many-lines' for pylint

This commit is contained in:
Lance Edgar 2025-09-01 14:18:21 -05:00
parent e5dbc4a98c
commit becf4fa822
3 changed files with 2 additions and 1 deletions

View file

@ -24,4 +24,3 @@ disable=fixme,
singleton-comparison, singleton-comparison,
too-few-public-methods, too-few-public-methods,
too-many-branches, too-many-branches,
too-many-lines,

View file

@ -23,6 +23,7 @@
""" """
New Order Batch Handler New Order Batch Handler
""" """
# pylint: disable=too-many-lines
import datetime import datetime
import decimal import decimal

View file

@ -23,6 +23,7 @@
""" """
Views for Orders Views for Orders
""" """
# pylint: disable=too-many-lines
import decimal import decimal
import json import json