Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: flake8-eyeo/tests/A207.py

Issue 30050569: Noissue - Removed linters which are now moved to a seperate repository (Closed)
Patch Set: Created April 25, 2019, 11:17 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « flake8-eyeo/tests/A206.py ('k') | flake8-eyeo/tests/A301.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 x = object()
2
3
4 def make_dict():
5 return {
6 'foo': None,
7 'bar': None,
8 0: None,
9 1: None,
10 x: None,
11
12 # A207
13 'foo': None,
14 # A207
15 ['bar' + ' '][0].strip(): None,
16 # A207
17 0.0: None,
18 # A207
19 True: None,
20 # A207
21 x: None,
22 # A207
23 str('foo'): None,
24 }
25
26
27 def make_set():
28 return {
29 'foo',
30 'bar',
31 0,
32 1,
33 x,
34
35 # A207
36 'foo',
37 # A207
38 ['bar' + ' '][0].strip(),
39 # A207
40 0.0,
41 # A207
42 True,
43 # A207
44 x,
45 # A207
46 str('foo'),
47 }
OLDNEW
« no previous file with comments | « flake8-eyeo/tests/A206.py ('k') | flake8-eyeo/tests/A301.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld