Skip to content

Commit fee25c3

Browse files
committed
style: line too long
1 parent ace77df commit fee25c3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

mypy/config_parser.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,11 @@ def check_follow_imports(choice: str) -> str:
143143
'disable_error_code': try_split,
144144
'enable_error_code': try_split,
145145
'package_root': try_split,
146-
'exclude': lambda s: [p.strip() for p in (s.split('\n') if isinstance(s, str) else s) if p.strip()],
146+
'exclude': lambda s: [
147+
p.strip() for p in
148+
(s.split('\n') if isinstance(s, str) else s)
149+
if p.strip()
150+
],
147151
})
148152

149153

0 commit comments

Comments
 (0)