deta / deta-python

deta's official sdk
https://deta.space/docs/en/build/reference/sdk/base
MIT License
153 stars 25 forks source link

Update: type hints for functions #14

Closed yankeexe closed 1 year ago

yankeexe commented 3 years ago

Updated type hints for the functions.

Few things I would like to get confirmed before I make the changes: Reference: mypy Standard Duck Types

  1. Replace dict with typing.Mapping and typing.MutableMapping.
  2. Replace list and List with typing.Iterable and typing.Sequence.

I believe these changes will make the code more predictable.