Skip to content

Commit

Permalink
Update src/blueapi/service/runner.py
Browse files Browse the repository at this point in the history
Co-authored-by: Callum Forrester <[email protected]>
  • Loading branch information
DiamondJoseph and callumforrester authored Aug 14, 2024
1 parent 5f3b48d commit b03defb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/blueapi/service/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ class RpcError(Exception): ...


def _rpc(
module_name: str, function_name: str, *args: P.args, **kwargs: P.kwargs
module_name: str, function_name: str, *args: Any, **kwargs: Any
) -> Any:
mod = import_module(module_name)
func: Callable[P, T] = _validate_function(
Expand Down

0 comments on commit b03defb

Please sign in to comment.