Skip to content

Commit a98f819

Browse files
committed
more lint fixes
1 parent c789073 commit a98f819

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/do_gradientai/types/__init__.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
agent_update_status_response,
1515
)
1616
from .. import _compat
17-
from .agents import evaluation_metrics # noqa: F401
18-
from .models import providers # noqa: F401
17+
from .agents import evaluation_metrics # type: ignore # noqa: F401
18+
from .models import providers # type: ignore # noqa: F401
1919
from .shared import (
2020
Size as Size,
2121
Image as Image,
@@ -69,7 +69,7 @@
6969
from .api_openai_api_key_info import APIOpenAIAPIKeyInfo as APIOpenAIAPIKeyInfo
7070
from .gpu_droplet_list_params import GPUDropletListParams as GPUDropletListParams
7171
from .model_retrieve_response import ModelRetrieveResponse as ModelRetrieveResponse
72-
from .agents.evaluation_metrics import workspaces # noqa: F401
72+
from .agents.evaluation_metrics import workspaces # type: ignore # noqa: F401
7373
from .api_deployment_visibility import (
7474
APIDeploymentVisibility as APIDeploymentVisibility,
7575
)
@@ -140,8 +140,8 @@
140140
GPUDropletListSnapshotsResponse as GPUDropletListSnapshotsResponse,
141141
)
142142
from .agents.evaluation_metrics.workspaces import (
143-
agent_list_response, # noqa: F401
144-
agent_move_response, # noqa: F401
143+
agent_list_response, # type: ignore # noqa: F401
144+
agent_move_response, # type: ignore # noqa: F401
145145
)
146146

147147
# Rebuild cyclical models only after all modules are imported.

src/do_gradientai/types/agents/evaluation_metrics/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from __future__ import annotations
44

5-
from . import workspaces # noqa: F401
5+
from . import workspaces # type: ignore # noqa: F401
66
from .model_list_params import ModelListParams as ModelListParams
77
from .model_list_response import ModelListResponse as ModelListResponse
88
from .workspace_create_params import WorkspaceCreateParams as WorkspaceCreateParams

0 commit comments

Comments
 (0)