Skip to content

Commit

Permalink
Lint directive conversion from codes to words
Browse files Browse the repository at this point in the history
  • Loading branch information
jmwright committed Oct 24, 2024
1 parent 0b9d3c4 commit d99f4ae
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion nimble_build_system/cad/fasteners.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ class Ziptie(Fastener):
"""
Ziptie fastener, that shows the straight, ununsed condition only.
"""
#pylint: disable=R0913
#pylint: disable=too-many-arguments

_thickness = 1.6 # mm
_width = 4 # mm
Expand Down
10 changes: 5 additions & 5 deletions nimble_build_system/cad/shelf.py
Original file line number Diff line number Diff line change
Expand Up @@ -411,11 +411,11 @@ def generate_assembly_model(self, explode=False):

# There is a false positive on the cq.Location constructor. If I make pylint happy it breaks
# the method dispatch. If I make Python happy, pylint fails.
# pylint: disable=E1120
# pylint: disable=W0212
# pylint: disable=R0912
# pylint: disable=R0915
# pylint: disable=E1121
# pylint: disable=no-value-for-parameter
# pylint: disable=protected-access
# pylint: disable=too-many-branches
# pylint: disable=too-many-statements
# pylint: disable=too-many-function-args

# If the shelf assembly has already been generated, do not generate it again
if self._shelf_assembly_model is None:
Expand Down

0 comments on commit d99f4ae

Please sign in to comment.