-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement
TypeMap
to enable module specific type map registration (#…
…677) * implement TypeMap * update tests * fix py39 and pint
- Loading branch information
Showing
10 changed files
with
1,110 additions
and
923 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,17 @@ | ||
"""Functions that map python types to widgets.""" | ||
|
||
from ._type_map import get_widget_class, register_type, type2callback, type_registered | ||
from ._type_map import ( | ||
TypeMap, | ||
get_widget_class, | ||
register_type, | ||
type2callback, | ||
type_registered, | ||
) | ||
|
||
__all__ = [ | ||
"get_widget_class", | ||
"register_type", | ||
"type_registered", | ||
"type2callback", | ||
"TypeMap", | ||
] |
Oops, something went wrong.