Skip to content

Commit ab07a11

Browse files
committed
Fix pylint complaint
1 parent 652c9b8 commit ab07a11

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.pylintrc

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,6 @@ persistent=yes
3636
# Specify a configuration file.
3737
#rcfile=
3838

39-
# When enabled, pylint would attempt to guess common misconfiguration and emit
40-
# user-friendly hints instead of false-positive error messages.
41-
suggestion-mode=yes
42-
4339
# Allow loading of arbitrary C extensions. Extensions are imported into the
4440
# active Python interpreter and may run arbitrary code.
4541
unsafe-load-any-extension=no
@@ -76,7 +72,7 @@ disable=consider-using-in,
7672
consider-using-dict-items,
7773
unspecified-encoding,
7874
consider-using-f-string,
79-
too-many-positional-arguments,
75+
too-many-positional-arguments,
8076
duplicate-code,
8177

8278
# Enable the message, report, category or checker with the given id(s). You can

cmdstanpy/progress.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import functools
66
import logging
77

8+
# pylint: disable=invalid-name
89
_SHOW_PROGRESS: bool = True
910

1011

0 commit comments

Comments
 (0)