Skip to content

Commit

Permalink
fix flake8 invalid escape sequence
Browse files Browse the repository at this point in the history
  • Loading branch information
anthrotype committed Nov 7, 2022
1 parent 67310fe commit 6957f48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/serde/test_serde.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class Foo:
foo = Foo(1)

with pytest.raises(
ExtrasNotInstalledError, match=f"Extras not installed: ufoLib2\[{extras}\]"
ExtrasNotInstalledError, match=rf"Extras not installed: ufoLib2\[{extras}\]"
) as exc_info:
dumps_method = getattr(foo, f"{extras}_dumps")
dumps_method()
Expand Down

0 comments on commit 6957f48

Please sign in to comment.