Skip to content

Commit 340834d

Browse files
committed
fix type checking
1 parent fdae930 commit 340834d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypy/config_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ def parse_section(prefix: str, template: Options,
227227
def split_directive(s: str) -> List[str]:
228228
"""Split s on commas, except during quoted sections"""
229229
parts = []
230-
cur = []
230+
cur = [] # type: List[str]
231231
i = 0
232232
while i < len(s):
233233
if s[i] == ',':

0 commit comments

Comments
 (0)