Skip to content

Commit 36d2272

Browse files
committed
Ran black
1 parent 607348f commit 36d2272

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

move_break/python/move_break/core/parsers/import_name_adapter.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,9 @@ def _is_matching_prefix_namespace(children, old_parts):
146146
# `expected_namespace` may equal `old_namespace` or be a child
147147
# namespace or a completely unrelated namespace.
148148
#
149-
expected_namespace = "".join([item.get_code(include_prefix=False) for item in children])
149+
expected_namespace = "".join(
150+
[item.get_code(include_prefix=False) for item in children]
151+
)
150152

151153
return expected_namespace.startswith(old_namespace)
152154

0 commit comments

Comments
 (0)