File tree Expand file tree Collapse file tree 4 files changed +4
-0
lines changed Expand file tree Collapse file tree 4 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 3
3
disable =
4
4
duplicate-code, # these examples often feature similar code
5
5
too-many-locals, # for these examples, we prioritize keeping everything together for simple readability
6
+ consider-using-f-string, # Not supported in Python 3.5
6
7
7
8
[BASIC]
8
9
# Allow function names up to 50 characters
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ disable =
10
10
# pylint does not recognize this
11
11
duplicate-code, # tests for similar things tend to be similar
12
12
redefined-outer-name, # raises false positives with fixtures
13
+ consider-using-f-string, # Not supported in Python 3.5
13
14
14
15
[DESIGN]
15
16
max-args = 10
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ disable =
8
8
useless-object-inheritance,
9
9
raise-missing-from,
10
10
super-with-arguments,
11
+ consider-using-f-string,
11
12
12
13
[BASIC]
13
14
# Allow function names up to 50 characters
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ disable =
14
14
useless-object-inheritance,
15
15
raise-missing-from,
16
16
super-with-arguments,
17
+ consider-using-f-string,
17
18
18
19
[DESIGN]
19
20
max-args = 10
You can’t perform that action at this time.
0 commit comments