Skip to content

Commit 4146186

Browse files
committed
Applied lint roller
1 parent c8a90d6 commit 4146186

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

lint_roller.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# fix these
22
declare -a errors=(
33
E301 E302 E303 E304 E305 E306 E502 E265
4-
W291 W292 W293 W391 E226 E225
4+
W291 W292 W293 W391 E226 E225 E241
55
)
66

77
# Only warn for these
88
declare -a warnings=(
9-
E101 E111 E112 E113 E121 E122 E123 E124 E125
9+
E101 E111 E112 E113 E121 E122 E124 E125
1010
E127 E128 E129 E131 E133 E201 E202 E203
1111
E211 E222 E223 E224 E225 E227 E228 E231
12-
E241 E242 E251 E261 E262 E271 E272 E402
13-
E703 E711 E712 E713 E714 E721 E722 W503 W504
12+
E242 E251 E261 E262 E271 E272 E402
13+
E703 E711 E712 E713 E714 E721 W503 W504
1414
)
1515

1616
if [ -z "$(git status --porcelain --untracked-files=no)" ] || [ $1 == "-f" ]; then

tests/test_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def test_permutations():
110110
('egg and spam', 'egg sausage and bacon', 'egg bacon and spam')]
111111
assert utils.permutations(data, 4) == [
112112
('egg and bacon', 'egg sausage and bacon', 'egg and spam', 'egg bacon and spam'),
113-
('egg and bacon', 'egg sausage and bacon', 'egg bacon and spam', 'egg and spam'),
113+
('egg and bacon', 'egg sausage and bacon', 'egg bacon and spam', 'egg and spam'),
114114
('egg and bacon', 'egg and spam', 'egg sausage and bacon', 'egg bacon and spam'),
115115
('egg and bacon', 'egg and spam', 'egg bacon and spam', 'egg sausage and bacon'),
116116
('egg and bacon', 'egg bacon and spam', 'egg sausage and bacon', 'egg and spam'),

0 commit comments

Comments
 (0)