Skip to content

Commit 8c9d7ee

Browse files
committedSep 21, 2024·
MNT: pylint
1 parent d2aba98 commit 8c9d7ee

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed
 

‎.pylintrc

+3
Original file line numberDiff line numberDiff line change
@@ -359,6 +359,9 @@ max-statements=25
359359
# Minimum number of public methods for a class (see R0903).
360360
min-public-methods=0
361361

362+
# Maximum number of positional arguments (see R0917).
363+
max-positional-arguments = 25
364+
362365

363366
[EXCEPTIONS]
364367

‎rocketpy/plots/rocket_plots.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,13 @@ def _draw_fins(self, ax, surface, position, drawn_surfaces, vis_args):
342342
drawn_surfaces.append((surface, position, surface.rocket_radius, x_rotated[-1]))
343343

344344
def _draw_generic_surface(
345-
self, ax, surface, position, drawn_surfaces, vis_args, plane
345+
self,
346+
ax,
347+
surface,
348+
position,
349+
drawn_surfaces,
350+
vis_args, # pylint: disable=unused-argument
351+
plane,
346352
):
347353
"""Draws the generic surface and saves the position of the points of interest
348354
for the tubes."""

0 commit comments

Comments
 (0)
Please sign in to comment.