diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2021-11-02 18:05:23 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2021-11-02 18:05:23 -0700 |
commit | 78f08280edea4ff65ca613ad30005c45cc48dea6 (patch) | |
tree | 6cb0408dde68f4ca8093fef18956c85f58882ccf /python/tests/import_common.py | |
parent | 46b4f588b2e58fe5d2d4b1a885c095f24c6cd400 (diff) | |
download | fatcat-78f08280edea4ff65ca613ad30005c45cc48dea6.tar.gz fatcat-78f08280edea4ff65ca613ad30005c45cc48dea6.zip |
python: isort everything
Diffstat (limited to 'python/tests/import_common.py')
-rw-r--r-- | python/tests/import_common.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/python/tests/import_common.py b/python/tests/import_common.py index 69e51432..2b7c935a 100644 --- a/python/tests/import_common.py +++ b/python/tests/import_common.py @@ -1,17 +1,17 @@ -import json import datetime +import json from typing import Any -import pytest import elasticsearch import fatcat_openapi_client -from fatcat_openapi_client import ReleaseEntity, ReleaseExtIds import fuzzycat.matching +import pytest +from fatcat_openapi_client import ReleaseEntity, ReleaseExtIds +from fixtures import * from fatcat_tools.importers import EntityImporter from fatcat_tools.transforms import entity_to_dict -from fixtures import * @pytest.fixture(scope="function") |