Skip to content

Commit ec02b45

Browse files
committed
πŸ› Fixed local argument assembly
1 parent 7d9ef3d commit ec02b45

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

β€Žsimvue/api/objects/alert/base.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def __init__(self, identifier: str | None = None, **kwargs) -> None:
3131
"""Retrieve an alert from the Simvue server by identifier"""
3232
self._label = "alert"
3333
super().__init__(identifier=identifier, **kwargs)
34-
self._local_only_args = [
34+
self._local_only_args += [
3535
"frequency",
3636
"pattern",
3737
"aggregation",

β€Žsimvue/api/objects/storage/s3.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def __init__(self, identifier: str | None = None, **kwargs) -> None:
2727
"""Initialise an S3Storage instance attaching a configuration"""
2828
self.config = Config(self)
2929
super().__init__(identifier, **kwargs)
30-
self._local_only_args: list[str] = [
30+
self._local_only_args += [
3131
"endpoint_url",
3232
"region_name",
3333
"access_key_id",

0 commit comments

Comments
Β (0)