Currently
type notation of get method of Getter class in getter.py is
def get(self, key: str) -> Union[str, None]:
.
But it is incorrect and type checkers in IDE warn.
Correct type notation is as follows:
def get(self, key: Union[bytes, str, list, dict]) -> AgentResponse:
.