dico
dico copied to clipboard
Docstring typing problem
Currently some types are not documented or removed from docstring to prevent problems with type mismatching in PyCharm or maybe other IDEs.
This happens since those are typed using aliases.
Possible solution is directly using Union[int, str, Snowflake, ...], however this may cause document hard to read and it is too long,