Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 466700c

Browse files
committed
Fix lint
1 parent 84970e6 commit 466700c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

mypy/maptype.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,4 +93,4 @@ def instance_to_type_environment(instance: Instance) -> Dict[int, Type]:
9393
9494
"""
9595
# Type variables bound by a class have `id` of 1, 2, etc.
96-
return {i+1: instance.args[i] for i in range(len(instance.args))}
96+
return {i + 1: instance.args[i] for i in range(len(instance.args))}

0 commit comments

Comments
 (0)