Open ChrisCScott opened 6 years ago
The typing library provides the various annotation types described in PEPs 483, 484, and 526.
typing
Type hints should be used throughout the entire forecaster package and subpackages. Some common types will likely include:
forecaster
LedgerHistory = Dict[int, Money]
TransactionSchedule = Dict[int, Money]
Accounts = Set[Account]
Callable[[input types], return type]
The
typing
library provides the various annotation types described in PEPs 483, 484, and 526.Type hints should be used throughout the entire
forecaster
package and subpackages. Some common types will likely include:LedgerHistory = Dict[int, Money]
TransactionSchedule = Dict[int, Money]
Accounts = Set[Account]
Callable[[input types], return type]