From 141b5dbf100cc828bd94253f5e1bc6fbbb5371f4 Mon Sep 17 00:00:00 2001 From: Dean Wyatte Date: Sun, 5 Mar 2023 10:16:39 -0700 Subject: [PATCH] fix quality --- tests/fixtures/fsspec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/fixtures/fsspec.py b/tests/fixtures/fsspec.py index f5cd60d67fc2..8aaa181a77e4 100644 --- a/tests/fixtures/fsspec.py +++ b/tests/fixtures/fsspec.py @@ -69,7 +69,7 @@ def modified(self, path): @classmethod def _strip_protocol(cls, path): path = stringify_path(path) - if path.startswith(f"mock://"): + if path.startswith("mock://"): path = path[7:] return path