Skip to content

Commit

Permalink
Adds missing type info.
Browse files Browse the repository at this point in the history
  • Loading branch information
samson-ichiban committed Jan 4, 2024
1 parent 40dc82a commit 12036ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gestalt/vault.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ def __init__(self,
token: Optional[str] = os.environ.get("VAULT_TOKEN"),
verify: Optional[bool] = True,
scheme: str = "ref+vault://",
delay=2,
tries=5) -> None:
delay: int = 2,
tries: int = 5) -> None:

self.delay = delay
self.tries = tries
Expand Down

0 comments on commit 12036ed

Please sign in to comment.