Skip to content

Commit

Permalink
ruff check . --select RUF027 --fix --unsafe-fixes --preview --show-fi…
Browse files Browse the repository at this point in the history
…xes; ruff format .;

Fixed 2 errors:
- tests/test_doctest_docutils.py:
    2 × RUF027 (missing-f-string-syntax)

Found 2 errors (2 fixed, 0 remaining).
11 files left unchanged
  • Loading branch information
tony committed Oct 19, 2024
1 parent 7d5408a commit 54aac76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_doctest_docutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ class DocTestFinderFixture(t.NamedTuple):
test_id="MyST-doctest_directive-colons",
files={
"example.md": textwrap.dedent(
"""
f"""
:::{doctest}
>>> 4 + 4
Expand All @@ -117,7 +117,7 @@ class DocTestFinderFixture(t.NamedTuple):
test_id="MyST-doctest_directive-backticks",
files={
"example.md": textwrap.dedent(
"""
f"""
```{doctest}
>>> 4 + 4
Expand Down

0 comments on commit 54aac76

Please sign in to comment.