Skip to content

Commit

Permalink
fix mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
ajpotts committed Nov 20, 2024
1 parent 104eeb1 commit a2ef2d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arkouda/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit a2ef2d3

Please sign in to comment.