Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion burr/core/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -1297,7 +1297,7 @@ async def arun(
halt_before: list[str] = None,
halt_after: list[str] = None,
inputs: Optional[Dict[str, Any]] = None,
) -> Tuple[Action, Optional[dict], State]:
) -> Tuple[Action, Optional[dict], State[ApplicationStateType]]:
"""Runs your application through until completion, using async. Does
not give access to the state along the way -- if you want that, use iterate().

Expand Down
2 changes: 1 addition & 1 deletion burr/tracking/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class SyncTrackingClient(
TODO -- create an async tracking client"""

@abc.abstractmethod
def copy(self):
def copy(self) -> "SyncTrackingClient":
pass


Expand Down
Loading