Skip to content

Commit

Permalink
Fix linter error on Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlatwe committed May 19, 2024
1 parent 0752580 commit 8f35afe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ def test_client_init_on_existing_storage(gettempdir):
cmd = [
sys.executable,
"-c",
f"import montydb;montydb.MontyClient({gettempdir!r})",
f"import montydb; montydb.MontyClient({gettempdir!r})", # noqa
]

subprocess.check_call(cmd)
Expand Down

0 comments on commit 8f35afe

Please sign in to comment.