Skip to content

Commit

Permalink
🚨 Fix Black v23 error
Browse files Browse the repository at this point in the history
  • Loading branch information
eigenein committed Aug 18, 2023
1 parent eca7ab2 commit 54af604
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def _discover_files() -> Iterator[Path]:


def _generate_params(path: Path) -> Iterator[NamedTuple]:
for (test_id, snippet) in CODE_BLOCK_RE.findall(path.read_text()):
for test_id, snippet in CODE_BLOCK_RE.findall(path.read_text()):
yield param(snippet, id=f"{path}#{test_id}")


Expand Down

0 comments on commit 54af604

Please sign in to comment.