fix: relax typing on _fn_result_to_body to allow Any (#212)

This commit is contained in:
J. Nick Koston 2023-07-27 15:38:09 -05:00 committed by GitHub
parent 5651b39626
commit 2f5fc38007
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -504,7 +504,7 @@ class ServiceInterface:
@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]]: