From 2e68ecf5440922f5fc3f3a8c7021b8e2847ecdd8 Mon Sep 17 00:00:00 2001 From: "Arav K." Date: Sun, 8 Sep 2024 14:02:06 +0200 Subject: [PATCH] [beets/test/_common] Correct formatting after rebase --- beets/test/_common.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/beets/test/_common.py b/beets/test/_common.py index 1d2788c728..22abe3349d 100644 --- a/beets/test/_common.py +++ b/beets/test/_common.py @@ -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)}"