diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2019-05-21 11:00:50 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2019-05-21 11:00:50 +0200 |
commit | c94c94837bb74defa9001688ca32cbb7a8597d99 (patch) | |
tree | a214b398958c65d8e193feaf8142643f310ce3e8 /src/ee/digikey | |
parent | c84c6c6bd59a03b21bd285b4f8117f566a23f8d3 (diff) | |
download | ee-python-c94c94837bb74defa9001688ca32cbb7a8597d99.tar.gz ee-python-c94c94837bb74defa9001688ca32cbb7a8597d99.tar.bz2 ee-python-c94c94837bb74defa9001688ca32cbb7a8597d99.tar.xz ee-python-c94c94837bb74defa9001688ca32cbb7a8597d99.zip |
ninja/init: Let init specify defaults, ninja just drops arguments if not
specified.
Diffstat (limited to 'src/ee/digikey')
-rw-r--r-- | src/ee/digikey/functions.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ee/digikey/functions.py b/src/ee/digikey/functions.py index c902b71..f95fd4c 100644 --- a/src/ee/digikey/functions.py +++ b/src/ee/digikey/functions.py @@ -5,7 +5,10 @@ from ee import EeVal, EeException from ee.part import Part from ee.xml import types, uris -__all__ = ["normalize_facts"] +__all__ = [ + "normalize_facts", + "default", +] # TODO: this should be moved to a generic normalizer |