diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-11-21 23:49:22 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-11-21 23:49:22 -0800 |
commit | 9b8c4db3618e517068242fcc4dbb8b430ac39f16 (patch) | |
tree | eb83fda436f79e45de77ceaa58bcd6f803c7854c /python | |
parent | d6d50dc52c5fd8e9b765d5f0826db3149cce3e73 (diff) | |
download | fatcat-9b8c4db3618e517068242fcc4dbb8b430ac39f16.tar.gz fatcat-9b8c4db3618e517068242fcc4dbb8b430ac39f16.zip |
include ApiException in shell
Diffstat (limited to 'python')
-rw-r--r-- | python/shell.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/shell.py b/python/shell.py index 7b795b4e..78d32deb 100644 --- a/python/shell.py +++ b/python/shell.py @@ -7,6 +7,7 @@ import argparse import fatcat_client from fatcat_client import * +from fatcat_client.rest import ApiException from fatcat_tools import * if __name__ == '__main__': |