diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2021-11-02 15:01:39 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2021-11-02 17:02:50 -0700 |
commit | e148fce040b874c7dd397cb22118a3c03b7f02d4 (patch) | |
tree | 5a14528b335565da5f5ff119cd770978892f43d8 /python/fatcat_tools/workers | |
parent | 20ce31bdc9c94a35b98369249544c122821a171f (diff) | |
download | fatcat-e148fce040b874c7dd397cb22118a3c03b7f02d4.tar.gz fatcat-e148fce040b874c7dd397cb22118a3c03b7f02d4.zip |
re-fmt all the fatcat_tools __init__ files for readability
Diffstat (limited to 'python/fatcat_tools/workers')
-rw-r--r-- | python/fatcat_tools/workers/__init__.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/python/fatcat_tools/workers/__init__.py b/python/fatcat_tools/workers/__init__.py index 32fd330d..18b35b2b 100644 --- a/python/fatcat_tools/workers/__init__.py +++ b/python/fatcat_tools/workers/__init__.py @@ -1,4 +1,7 @@ - from .changelog import ChangelogWorker, EntityUpdatesWorker -from .elasticsearch import ElasticsearchReleaseWorker, ElasticsearchContainerWorker, ElasticsearchChangelogWorker -from .worker_common import most_recent_message, FatcatWorker +from .elasticsearch import ( + ElasticsearchChangelogWorker, + ElasticsearchContainerWorker, + ElasticsearchReleaseWorker, +) +from .worker_common import FatcatWorker, most_recent_message |