Skip to content

Commit 3c9832f

Browse files
committed
fix typing
1 parent 63f8cbe commit 3c9832f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

flagsmith/flagsmith.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,8 +292,8 @@ def update_environment(self) -> None:
292292
def _get_headers(
293293
self,
294294
environment_key: str,
295-
application_metadata: ApplicationMetadata,
296-
custom_headers: typing.Optional[typing.Dict[str, typing.Any]] = None,
295+
application_metadata: typing.Optional[ApplicationMetadata],
296+
custom_headers: typing.Optional[typing.Dict[str, typing.Any]],
297297
) -> typing.Dict[str, str]:
298298
headers = {
299299
"X-Environment-Key": environment_key,

0 commit comments

Comments
 (0)