Skip to content

Commit 0e0f018

Browse files
fix: invalid type alias for EvaluationContextAttributes (#534)
The current type hint was impossible to satisfy with nested dict attributes that are not empty. Fixes #532 Signed-off-by: AlexandrePicosson <picosson.alexandre@gmail.com>
1 parent 92f5da4 commit 0e0f018

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openfeature/evaluation_context/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
str,
2020
datetime,
2121
Sequence["EvaluationContextAttributes"],
22-
typing.Mapping[str, "EvaluationContextAttributes"],
22+
"EvaluationContextAttributes",
2323
],
2424
]
2525

0 commit comments

Comments
 (0)