april-tools / cirkit

a python framework to build, learn and reason about probabilistic circuits and tensor networks
https://cirkit-docs.readthedocs.io/en/latest/
GNU General Public License v3.0
71 stars 1 forks source link

Use `Unpack`/`TypedDict` for kwargs typing #147

Open lkct opened 11 months ago

lkct commented 11 months ago

Currently (almost?) all kwargs in the repo are typed as **kwargs: Any, but we can make it more specific in some cases with Unpack and TypedDict.

Ref https://docs.python.org/3/library/typing.html#typing.Unpack, should be available in typing_extensions for py3.8.