Skip to content

Commit

Permalink
fix: remove artifact parameter of _process_async
Browse files Browse the repository at this point in the history
  • Loading branch information
aleneum committed Aug 21, 2024
1 parent 5f77cc2 commit 4aed56d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion transitions/extensions/asyncio.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ class AsyncMachine(Machine):
def get_state(self, state: Union[str, Enum]) -> AsyncState: ...
async def process_context(self, func: Callable[[], Awaitable[None]], model: object) -> bool: ...
def remove_model(self, model: object) -> None: ...
async def _process_async(self, trigger: Callable[[], Awaitable[None]], model: object, queued: bool) -> bool: ...
async def _process_async(self, trigger: Callable[[], Awaitable[None]], model: object) -> bool: ...


class HierarchicalAsyncMachine(HierarchicalMachine, AsyncMachine): # type: ignore
Expand Down

0 comments on commit 4aed56d

Please sign in to comment.