Skip to content
This repository was archived by the owner on Mar 23, 2026. It is now read-only.

Commit 957b4b9

Browse files
committed
Clarify variable naming
1 parent 45c3735 commit 957b4b9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • localstack-core/localstack/services/sts

localstack-core/localstack/services/sts/models.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717

1818

1919
@dataclass
20-
class SingleValuedContextKey:
20+
class SingleValuedContextValue:
2121
value: str
2222

2323

2424
@dataclass
25-
class MultiValuedContextKey:
25+
class MultiValuedContextValue:
2626
value: list[str]
2727

2828

@@ -46,7 +46,7 @@ class TemporaryCredentials:
4646
# list of lowercase transitive tag keys
4747
transitive_tags: list[str] = field(default_factory=list)
4848
# other stored context variables
49-
iam_context: dict[str, SingleValuedContextKey | MultiValuedContextKey] = field(
49+
iam_context: dict[str, SingleValuedContextValue | MultiValuedContextValue] = field(
5050
default_factory=dict
5151
)
5252

0 commit comments

Comments
 (0)