Skip to content

Commit 9424433

Browse files
authored
chore: Fix CI (#180)
1 parent b40745d commit 9424433

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

examples/src/pylintrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
disable =
44
duplicate-code, # these examples often feature similar code
55
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
67

78
[BASIC]
89
# Allow function names up to 50 characters

examples/test/pylintrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ disable =
1010
# pylint does not recognize this
1111
duplicate-code, # tests for similar things tend to be similar
1212
redefined-outer-name, # raises false positives with fixtures
13+
consider-using-f-string, # Not supported in Python 3.5
1314

1415
[DESIGN]
1516
max-args = 10

src/pylintrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ disable =
88
useless-object-inheritance,
99
raise-missing-from,
1010
super-with-arguments,
11+
consider-using-f-string,
1112

1213
[BASIC]
1314
# Allow function names up to 50 characters

test/pylintrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ disable =
1414
useless-object-inheritance,
1515
raise-missing-from,
1616
super-with-arguments,
17+
consider-using-f-string,
1718

1819
[DESIGN]
1920
max-args = 10

0 commit comments

Comments
 (0)