We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73bf1e2 commit 408ede9Copy full SHA for 408ede9
quantflow_tests/test_vault.py
@@ -1,5 +1,5 @@
1
-from pathlib import Path
2
import tempfile
+from pathlib import Path
3
4
import pytest
5
@@ -27,7 +27,7 @@ def test_vault(vault: Vault) -> None:
27
assert vault.keys() == ["hello"]
28
29
vault.add("foo", "bar")
30
- assert vault.keys() == [ "foo", "hello"]
+ assert vault.keys() == ["foo", "hello"]
31
assert vault.delete("foo")
32
33
assert not vault.delete("foo")
0 commit comments