Skip to content

Commit 6ac9abe

Browse files
committed
Fix linter issues
1 parent 662376a commit 6ac9abe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python-dict-comprehension/filter_keys.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
"1201": "Greenfield",
88
"1202": "Sunnydale",
99
"1301": "Meadowbrook",
10-
"1302": "Creekwood"
10+
"1302": "Creekwood",
1111
}
12-
{code: town for code, town in codes.items() if "1100" <= code <= "1300"}
12+
print({code: town for code, town in codes.items() if "1100" <= code <= "1300"})

0 commit comments

Comments
 (0)