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/shell.py | |
parent | 46b4f588b2e58fe5d2d4b1a885c095f24c6cd400 (diff) | |
download | fatcat-78f08280edea4ff65ca613ad30005c45cc48dea6.tar.gz fatcat-78f08280edea4ff65ca613ad30005c45cc48dea6.zip |
python: isort everything
Diffstat (limited to 'python/shell.py')
-rw-r--r-- | python/shell.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/python/shell.py b/python/shell.py index d53911b9..9b561f5f 100644 --- a/python/shell.py +++ b/python/shell.py @@ -1,14 +1,15 @@ # flake8: noqa # bunch of libraries one might want -import uuid -import datetime -import requests import argparse +import datetime +import uuid import fatcat_openapi_client +import requests from fatcat_openapi_client import * from fatcat_openapi_client.rest import ApiException + from fatcat_tools import * if __name__ == '__main__': |