Skip to content

Commit 722d734

Browse files
committed
Make lint pass
1 parent a841f3f commit 722d734

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.pylintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ valid-metaclass-classmethod-first-arg=mcs
395395
[DESIGN]
396396

397397
# Maximum number of arguments for function / method
398-
max-args=5
398+
max-args=6
399399

400400
# Maximum number of attributes for a class (see R0902).
401401
# max-attributes=7

examples/test_formatting.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,6 @@ def __init__(
1515
self.min_pressure = min_pressure
1616
self.display_timeout = display_timeout
1717
self.config_filename = config_filename
18+
19+
def fake(self):
20+
pass

0 commit comments

Comments
 (0)