I went and added some more type annotations to the source code to make it a bit easier to grok.
Additionally, because the pyproject.toml specifies that py-fsrs requires at least python 3.9, I replaced the Tuple and Dict type annotations with tuple and dict type annotations, which are equivalent, but don't require an import statement.
I went and added some more type annotations to the source code to make it a bit easier to grok.
Additionally, because the pyproject.toml specifies that py-fsrs requires at least python 3.9, I replaced the
Tuple
andDict
type annotations withtuple
anddict
type annotations, which are equivalent, but don't require an import statement.Let me know if there are any issues/questions