From a2ef2d36848f3de697434b289be759877a48ac6d Mon Sep 17 00:00:00 2001 From: Amanda Potts Date: Wed, 20 Nov 2024 16:54:35 -0500 Subject: [PATCH] fix mypy --- arkouda/client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arkouda/client.py b/arkouda/client.py index 672d407c35..7818f75954 100644 --- a/arkouda/client.py +++ b/arkouda/client.py @@ -1065,7 +1065,7 @@ def get_max_array_rank() -> int: return int(serverConfig["maxArrayDims"]) -def get_array_ranks() -> int: +def get_array_ranks() -> list[int]: """ Get the list of pdarray ranks the server was compiled to support @@ -1108,7 +1108,7 @@ def _get_config_msg() -> Mapping[str, Union[str, int, float]]: raise RuntimeError(f"{e} in retrieving Arkouda server config") -def _get_registration_config_msg() -> Mapping[str, Union[str, int, float, list]]: +def _get_registration_config_msg() -> dict: """ Get runtime information about the command registration configuration.