Skip to content

Commit

Permalink
update snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
dylwil3 committed Aug 9, 2024
1 parent e72c793 commit 494cfa6
Show file tree
Hide file tree
Showing 2 changed files with 179 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -170,18 +170,18 @@ RUF031.py:28:3: RUF031 [*] Avoid parentheses for tuples in subscripts.
30 30 | d[:,] # slices in the subscript lead to syntax error if parens are added
31 31 | d[1,2,:]

RUF031.py:35:3: RUF031 [*] Avoid parentheses for tuples in subscripts.
RUF031.py:36:3: RUF031 [*] Avoid parentheses for tuples in subscripts.
|
33 | # Should keep these parentheses in
34 | # Python 3.8 to avoid syntax error.
35 | d[(*foo,bar)]
34 | # Python <=3.10 to avoid syntax error.
35 | # https://github.com/astral-sh/ruff/issues/12776
36 | d[(*foo,bar)]
| ^^^^^^^^^^ RUF031
|
= help: Remove the parentheses.

Safe fix
32 32 |
33 33 | # Should keep these parentheses in
34 34 | # Python 3.8 to avoid syntax error.
35 |-d[(*foo,bar)]
35 |+d[*foo,bar]
34 34 | # Python <=3.10 to avoid syntax error.
35 35 | # https://github.com/astral-sh/ruff/issues/12776
36 |-d[(*foo,bar)]
36 |+d[*foo,bar]
Original file line number Diff line number Diff line change
@@ -0,0 +1,171 @@
---
source: crates/ruff_linter/src/rules/ruff/mod.rs
---
RUF031.py:2:3: RUF031 [*] Avoid parentheses for tuples in subscripts.
|
1 | d = {(1,2):"a",(3,4):"b",(5,6,7):"c",(8,):"d"}
2 | d[(1,2)]
| ^^^^^ RUF031
3 | d[(
4 | 1,
|
= help: Remove the parentheses.

Safe fix
1 1 | d = {(1,2):"a",(3,4):"b",(5,6,7):"c",(8,):"d"}
2 |-d[(1,2)]
2 |+d[1,2]
3 3 | d[(
4 4 | 1,
5 5 | 2

RUF031.py:3:3: RUF031 [*] Avoid parentheses for tuples in subscripts.
|
1 | d = {(1,2):"a",(3,4):"b",(5,6,7):"c",(8,):"d"}
2 | d[(1,2)]
3 | d[(
| ___^
4 | | 1,
5 | | 2
6 | | )]
| |_^ RUF031
7 | d[
8 | 1,
|
= help: Remove the parentheses.

Safe fix
1 1 | d = {(1,2):"a",(3,4):"b",(5,6,7):"c",(8,):"d"}
2 2 | d[(1,2)]
3 |-d[(
3 |+d[
4 4 | 1,
5 5 | 2
6 |-)]
6 |+]
7 7 | d[
8 8 | 1,
9 9 | 2

RUF031.py:11:3: RUF031 [*] Avoid parentheses for tuples in subscripts.
|
9 | 2
10 | ]
11 | d[(2,4)]
| ^^^^^ RUF031
12 | d[(5,6,7)]
13 | d[(8,)]
|
= help: Remove the parentheses.

Safe fix
8 8 | 1,
9 9 | 2
10 10 | ]
11 |-d[(2,4)]
11 |+d[2,4]
12 12 | d[(5,6,7)]
13 13 | d[(8,)]
14 14 | d[tuple(1,2)]

RUF031.py:12:3: RUF031 [*] Avoid parentheses for tuples in subscripts.
|
10 | ]
11 | d[(2,4)]
12 | d[(5,6,7)]
| ^^^^^^^ RUF031
13 | d[(8,)]
14 | d[tuple(1,2)]
|
= help: Remove the parentheses.

Safe fix
9 9 | 2
10 10 | ]
11 11 | d[(2,4)]
12 |-d[(5,6,7)]
12 |+d[5,6,7]
13 13 | d[(8,)]
14 14 | d[tuple(1,2)]
15 15 | d[tuple(8)]

RUF031.py:13:3: RUF031 [*] Avoid parentheses for tuples in subscripts.
|
11 | d[(2,4)]
12 | d[(5,6,7)]
13 | d[(8,)]
| ^^^^ RUF031
14 | d[tuple(1,2)]
15 | d[tuple(8)]
|
= help: Remove the parentheses.

Safe fix
10 10 | ]
11 11 | d[(2,4)]
12 12 | d[(5,6,7)]
13 |-d[(8,)]
13 |+d[8,]
14 14 | d[tuple(1,2)]
15 15 | d[tuple(8)]
16 16 | d[1,2]

RUF031.py:20:3: RUF031 [*] Avoid parentheses for tuples in subscripts.
|
18 | d[5,6,7]
19 | e = {((1,2),(3,4)):"a"}
20 | e[((1,2),(3,4))]
| ^^^^^^^^^^^^^ RUF031
21 | e[(1,2),(3,4)]
|
= help: Remove the parentheses.

Safe fix
17 17 | d[3,4]
18 18 | d[5,6,7]
19 19 | e = {((1,2),(3,4)):"a"}
20 |-e[((1,2),(3,4))]
21 20 | e[(1,2),(3,4)]
21 |+e[(1,2),(3,4)]
22 22 |
23 23 | token_features[
24 24 | (window_position, feature_name)

RUF031.py:24:5: RUF031 [*] Avoid parentheses for tuples in subscripts.
|
23 | token_features[
24 | (window_position, feature_name)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ RUF031
25 | ] = self._extract_raw_features_from_token
|
= help: Remove the parentheses.

Safe fix
21 21 | e[(1,2),(3,4)]
22 22 |
23 23 | token_features[
24 |- (window_position, feature_name)
24 |+ window_position, feature_name
25 25 | ] = self._extract_raw_features_from_token
26 26 |
27 27 | d[1,]

RUF031.py:28:3: RUF031 [*] Avoid parentheses for tuples in subscripts.
|
27 | d[1,]
28 | d[(1,)]
| ^^^^ RUF031
29 | d[()] # empty tuples should be ignored
30 | d[:,] # slices in the subscript lead to syntax error if parens are added
|
= help: Remove the parentheses.

Safe fix
25 25 | ] = self._extract_raw_features_from_token
26 26 |
27 27 | d[1,]
28 |-d[(1,)]
28 |+d[1,]
29 29 | d[()] # empty tuples should be ignored
30 30 | d[:,] # slices in the subscript lead to syntax error if parens are added
31 31 | d[1,2,:]

0 comments on commit 494cfa6

Please sign in to comment.