Open KasiaKoz opened 1 year ago
GeNet requires better typing and documentation of arguments and methods - this is expected to be a big overhaul.
e.g. use of Optional[str] = None instead of str = None in optional/defaulted arguments and typing mandatory ones https://github.com/arup-group/genet/blob/main/genet/utils/google_directions.py#L19-L21
Optional[str] = None
str = None
GeNet requires better typing and documentation of arguments and methods - this is expected to be a big overhaul.
e.g. use of
Optional[str] = None
instead ofstr = None
in optional/defaulted arguments and typing mandatory ones https://github.com/arup-group/genet/blob/main/genet/utils/google_directions.py#L19-L21