Skip to content

Commit 5f14e95

Browse files
committed
Black
1 parent 475874b commit 5f14e95

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

readthedocs/rtd_tests/tests/test_doc_building.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@ def test_record_command_as_success(self):
5757

5858
with build_env:
5959
build_env.run(
60-
'false',
60+
"false",
6161
record_as_success=True,
6262
# Use a directory that exists so the command doesn't fail.
63-
cwd='/tmp',
63+
cwd="/tmp",
6464
)
6565
self.assertEqual(len(build_env.commands), 1)
6666

readthedocs/vcs_support/backends/git.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -610,7 +610,9 @@ def submodules(self) -> Iterable[GitSubmodule]:
610610
url = submodule.get("url")
611611
path = submodule.get("path")
612612
if not url or not path:
613-
log.warning("Invalid submodule.", submoduel_url=url, submodule_path=path)
613+
log.warning(
614+
"Invalid submodule.", submoduel_url=url, submodule_path=path
615+
)
614616
continue
615617
yield GitSubmodule(
616618
url=url,

0 commit comments

Comments
 (0)