diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2022-08-11 19:23:40 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2022-08-11 19:23:40 -0700 |
commit | ef79f4d157fc576eeb0f54e01d827f277de35708 (patch) | |
tree | a33f1249fa386ab7970cd677be840c15924dc319 /python_openapi_client/fatcat_openapi_client/api/__init__.py | |
parent | 2c4ea805675cee28fbbfae773420a853820f875d (diff) | |
download | fatcat-ef79f4d157fc576eeb0f54e01d827f277de35708.tar.gz fatcat-ef79f4d157fc576eeb0f54e01d827f277de35708.zip |
codegen python client using newer generator (v6.0.1)
Diffstat (limited to 'python_openapi_client/fatcat_openapi_client/api/__init__.py')
-rw-r--r-- | python_openapi_client/fatcat_openapi_client/api/__init__.py | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/python_openapi_client/fatcat_openapi_client/api/__init__.py b/python_openapi_client/fatcat_openapi_client/api/__init__.py index cdd759f9..b4143758 100644 --- a/python_openapi_client/fatcat_openapi_client/api/__init__.py +++ b/python_openapi_client/fatcat_openapi_client/api/__init__.py @@ -1,6 +1,3 @@ -from __future__ import absolute_import - -# flake8: noqa - -# import apis into api package -from fatcat_openapi_client.api.default_api import DefaultApi +# do not import all apis into this module because that uses a lot of memory and stack frames +# if you need the ability to import all apis from one package, import them with +# from fatcat_openapi_client.apis import AuthApi |