Skip to content

Commit 9f5a3d9

Browse files
committed
lint reformat
1 parent 5621be2 commit 9f5a3d9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mypy/plugins/common.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,11 +126,11 @@ def _get_default_bool_value(
126126
if initializer is None or not isinstance(initializer, NameExpr):
127127
# No default was defined in the code or it is a complex expression.
128128
return default # Return analyzer-defined default.
129-
if initializer.fullname == 'builtins.True':
129+
if initializer.fullname == "builtins.True":
130130
return True
131-
if initializer.fullname == 'builtins.False':
131+
if initializer.fullname == "builtins.False":
132132
return False
133-
if initializer.fullname == 'builtins.None':
133+
if initializer.fullname == "builtins.None":
134134
return None
135135
return default # Cannot extract default from code, return analyzer-defined default.
136136

0 commit comments

Comments
 (0)