Skip to content

Commit

Permalink
fix: add missing * to stubs, that EB was expecting
Browse files Browse the repository at this point in the history
  • Loading branch information
achidlow committed Jun 25, 2024
1 parent 57b7c2c commit 4842719
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion stubs/algopy-stubs/_state.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,8 @@ class GlobalState(typing.Generic[_TState]):
self: GlobalState[_TState],
initial_value: _TState,
/,
key: str | bytes = ...,
*,
key: bytes | str = ...,
description: str = "",
) -> None:
"""Declare the global state key and initialize its value"""
Expand Down

0 comments on commit 4842719

Please sign in to comment.