diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2021-11-02 15:24:40 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2021-11-02 17:02:50 -0700 |
commit | 675ecb96fe0e51f169c2d01683f02205ef327825 (patch) | |
tree | 19be01afe2ddb0791368a1b9b5223deb3cba6d19 /python/tests/transform_toml.py | |
parent | e148fce040b874c7dd397cb22118a3c03b7f02d4 (diff) | |
download | fatcat-675ecb96fe0e51f169c2d01683f02205ef327825.tar.gz fatcat-675ecb96fe0e51f169c2d01683f02205ef327825.zip |
cleanup imports after fatcat_tools.transforms change
Diffstat (limited to 'python/tests/transform_toml.py')
-rw-r--r-- | python/tests/transform_toml.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/python/tests/transform_toml.py b/python/tests/transform_toml.py index d12ba027..29da1d38 100644 --- a/python/tests/transform_toml.py +++ b/python/tests/transform_toml.py @@ -1,10 +1,11 @@ import json -from fatcat_tools import * -from fatcat_openapi_client import * +from fatcat_openapi_client import ReleaseEntity +from fixtures import api from import_crossref import crossref_importer -from fixtures import * + +from fatcat_tools.transforms import entity_from_toml, entity_to_toml def test_basic_toml(crossref_importer): |