Skip to content

Commit a74f0ee

Browse files
committed
lint
1 parent d4112f0 commit a74f0ee

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

packages/gcp-sphinx-docfx-yaml/docfx_yaml/markdown_utils.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -307,9 +307,10 @@ def _merge_markdown_content(
307307
content before the base file content.
308308
"""
309309
try:
310-
with open(base_file, "r+") as base, open(
311-
additional_content_file, "r"
312-
) as additional_content:
310+
with (
311+
open(base_file, "r+") as base,
312+
open(additional_content_file, "r") as additional_content,
313+
):
313314
file_content = (
314315
f"{additional_content.read()}\n{base.read()}"
315316
if prepend_additional_content

0 commit comments

Comments
 (0)