Skip to content

Commit e788174

Browse files
Lorenzo CurcioLorenzo Curcio
authored andcommitted
removed unnecessary type hint
Signed-off-by: Lorenzo Curcio <[email protected]>
1 parent 85b8d6c commit e788174

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dapr/actor/runtime/mock_actor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ async def set_state(self, data: dict) -> None:
4848
def __init__(self, actor_id: str, initstate: Optional[dict]):
4949
self.id = ActorId(actor_id)
5050
self._runtime_ctx = None # type: ignore
51-
self._state_manager: ActorStateManager = MockStateManager(self, initstate)
51+
self._state_manager = MockStateManager(self, initstate)
5252

5353
async def register_timer(
5454
self,

0 commit comments

Comments
 (0)