Skip to content

Commit

Permalink
fix: black formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
peterschutt committed Feb 14, 2024
1 parent bede9a6 commit 682aaaa
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python/shin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ def __getitem__(self, key: Literal["delta"]) -> float:
def __getitem__(self, key: Literal["z"]) -> float:
...

def __getitem__(self, key: Literal["implied_probabilities", "iterations", "delta", "z"]) -> Any:
def __getitem__(
self, key: Literal["implied_probabilities", "iterations", "delta", "z"]
) -> Any:
try:
return getattr(self, key)
except AttributeError:
Expand Down

0 comments on commit 682aaaa

Please sign in to comment.