Skip to content

Commit 71f798b

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 3667393 commit 71f798b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

astroid/modutils.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,9 @@ def load_module_from_name(dotted_name: str) -> types.ModuleType:
191191
)
192192
stdout_value = stdout.getvalue()
193193
if stdout_value:
194-
logger.info("Captured stdout while importing %s:\n%s", dotted_name, stdout_value)
194+
logger.info(
195+
"Captured stdout while importing %s:\n%s", dotted_name, stdout_value
196+
)
195197

196198
return module
197199

0 commit comments

Comments
 (0)