Skip to content
Snippets Groups Projects
Commit adbd7f76 authored by Chris Lamb's avatar Chris Lamb :eyes:
Browse files

No need to use str.format if we are just returning the string.

parent a6bcc07f
No related branches found
No related tags found
No related merge requests found
Pipeline #112005 passed
......@@ -31,7 +31,7 @@ from ..utils.tools import skip_unless_tools_exist
def zst_fixture(prefix):
@pytest.fixture
def zstd(tmpdir):
input_ = str(tmpdir.join('{}'.format(prefix)))
input_ = str(tmpdir.join(prefix))
output = str(tmpdir.join('{}.zst'.format(prefix)))
with open(input_, 'w') as f:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment