-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
489e943
commit 388cf5e
Showing
193 changed files
with
3,407 additions
and
2,141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,16 @@ | ||
# coding: utf-8 | ||
import inspect | ||
|
||
# flake8: noqa | ||
from pydantic import BaseModel | ||
|
||
""" | ||
launch | ||
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 | ||
The version of the OpenAPI document: 1.0.0 | ||
Generated by: https://openapi-generator.tech | ||
""" | ||
|
||
__version__ = "1.0.5" | ||
|
||
# import ApiClient | ||
from launch.api_client.api_client import ApiClient | ||
|
||
# import Configuration | ||
from launch.api_client.configuration import Configuration | ||
|
||
# import exceptions | ||
from launch.api_client.exceptions import ( | ||
ApiAttributeError, | ||
ApiException, | ||
ApiKeyError, | ||
ApiTypeError, | ||
ApiValueError, | ||
OpenApiException, | ||
from launch.api_client import models | ||
from launch.api_client.api_client import ( # noqa F401 | ||
ApiClient, | ||
AsyncApis, | ||
SyncApis, | ||
) | ||
|
||
for model in inspect.getmembers(models, inspect.isclass): | ||
if model[1].__module__ == "launch.api_client.models": | ||
model_class = model[1] | ||
if isinstance(model_class, BaseModel): | ||
model_class.update_forward_refs() |
Empty file.
Oops, something went wrong.