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/fatcat_tools/cleanups | |
parent | 46b4f588b2e58fe5d2d4b1a885c095f24c6cd400 (diff) | |
download | fatcat-78f08280edea4ff65ca613ad30005c45cc48dea6.tar.gz fatcat-78f08280edea4ff65ca613ad30005c45cc48dea6.zip |
python: isort everything
Diffstat (limited to 'python/fatcat_tools/cleanups')
-rw-r--r-- | python/fatcat_tools/cleanups/common.py | 3 | ||||
-rw-r--r-- | python/fatcat_tools/cleanups/files.py | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/python/fatcat_tools/cleanups/common.py b/python/fatcat_tools/cleanups/common.py index 04e6ade4..d0fcc761 100644 --- a/python/fatcat_tools/cleanups/common.py +++ b/python/fatcat_tools/cleanups/common.py @@ -1,10 +1,11 @@ -import json import copy +import json import subprocess from collections import Counter from fatcat_openapi_client import ApiClient, Editgroup + from fatcat_tools.transforms import entity_from_dict, entity_to_dict diff --git a/python/fatcat_tools/cleanups/files.py b/python/fatcat_tools/cleanups/files.py index 10dd45cc..0d275ba6 100644 --- a/python/fatcat_tools/cleanups/files.py +++ b/python/fatcat_tools/cleanups/files.py @@ -1,6 +1,6 @@ -from fatcat_openapi_client.rest import ApiException from fatcat_openapi_client.models import FileEntity +from fatcat_openapi_client.rest import ApiException from .common import EntityCleaner |