Skip to content

Commit

Permalink
Bump version to v0.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mmourafiq committed Jul 31, 2024
1 parent 3ecbe9e commit 8138b05
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion vents/vents/pkg.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
NAME = "vents"
VERSION = "0.4.3"
VERSION = "0.4.4"
DESC = "Open source connections, integrations, alerting, and notification library."
URL = "https://github.com/mmourafiq/vents"
AUTHOR = "Mourad Mourafiq"
Expand Down
4 changes: 2 additions & 2 deletions vents/vents/providers/aws/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,12 +131,12 @@ def get_aws_session_name(
context_paths: Optional[List[str]] = None,
) -> Optional[str]:
keys = keys or ["AWS_SESSION_NAME"]
return VENTS_CONFIG.read_keys(context_paths=context_path, keys=keys) # type: ignore
return VENTS_CONFIG.read_keys(context_paths=context_paths, keys=keys) # type: ignore


def get_aws_session_duration(
keys: Optional[Union[str, List[str]]] = None,
context_paths: Optional[List[str]] = None,
) -> Optional[str]:
keys = keys or ["AWS_SESSION_DURATION"]
return VENTS_CONFIG.read_keys(context_paths=context_path, keys=keys) # type: ignore
return VENTS_CONFIG.read_keys(context_paths=context_paths, keys=keys) # type: ignore

0 comments on commit 8138b05

Please sign in to comment.