Skip to content

Commit

Permalink
[beets/test/_common] Correct formatting after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
Arav K. committed Sep 8, 2024
1 parent a815aaa commit 2e68ecf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion beets/test/_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,9 @@ class Assertions:
"""A mixin with additional unit test assertions."""

def assertExists(self, path): # noqa
assert os.path.exists(syspath(path)), f"file does not exist: {repr(path)}"
assert os.path.exists(
syspath(path)
), f"file does not exist: {repr(path)}"

def assertNotExists(self, path): # noqa
assert not os.path.exists(syspath(path)), f"file exists: {repr(path)}"
Expand Down

0 comments on commit 2e68ecf

Please sign in to comment.