Skip to content

Commit

Permalink
fix: relax typing on _fn_result_to_body to allow Any (#212)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco authored Jul 27, 2023
1 parent 5651b39 commit 2f5fc38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dbus_fast/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ def _msg_body_to_args(msg: Message) -> List[Any]:

@staticmethod
def _fn_result_to_body(
result: Optional[List[Any]],
result: Optional[Any],
signature_tree: SignatureTree,
replace_fds: bool = True,
) -> Tuple[List[Any], List[int]]:
Expand Down

0 comments on commit 2f5fc38

Please sign in to comment.