Skip to content

Commit 408ede9

Browse files
committed
Add maturity to options dataframe
1 parent 73bf1e2 commit 408ede9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

quantflow_tests/test_vault.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from pathlib import Path
21
import tempfile
2+
from pathlib import Path
33

44
import pytest
55

@@ -27,7 +27,7 @@ def test_vault(vault: Vault) -> None:
2727
assert vault.keys() == ["hello"]
2828

2929
vault.add("foo", "bar")
30-
assert vault.keys() == [ "foo", "hello"]
30+
assert vault.keys() == ["foo", "hello"]
3131
assert vault.delete("foo")
3232
assert vault.keys() == ["hello"]
3333
assert not vault.delete("foo")

0 commit comments

Comments
 (0)