Skip to content

Commit

Permalink
Blacken tests/
Browse files Browse the repository at this point in the history
  • Loading branch information
bbugyi200 committed Jan 20, 2024
1 parent 23395a4 commit 080f62d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ def inner_main(*args: str, **kwargs: Any) -> int:
if key not in kwargs:
template_path: Path = kwargs["zettel_dir"] / f"{stem}.zo"
template_path.parent.mkdir(parents=True, exist_ok=True)
test_data_template_path = Path(__file__).parent / Path(f"data/{stem}.zo")
test_data_template_path = Path(__file__).parent / Path(
f"data/{stem}.zo"
)
template_path.write_text(test_data_template_path.read_text())
kwargs[key] = template_path.name

Expand Down

0 comments on commit 080f62d

Please sign in to comment.