Skip to content

Commit 5af88cb

Browse files
committed
Fix indentation
1 parent de10645 commit 5af88cb

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

pelican/plugins/graphviz/test_graphviz.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,13 +93,15 @@ def test_md(self):
9393
# Write header
9494
fid.write(f"Title: {TEST_FILE_STEM}\nDate: 1970-01-01\n")
9595
# Write Graphviz block
96-
fid.write(f"""
96+
fid.write(
97+
f"""
9798
{self.config["md_block_start"]} {options_string} dot
9899
digraph{f" {self.config['digraph_id']}" if self.config["digraph_id"] else ""} {{
99100
graph [rankdir = LR];
100101
Hello -> World
101102
}}
102-
""")
103+
"""
104+
)
103105

104106
self.run_pelican()
105107
self.assert_expected_output()

0 commit comments

Comments
 (0)