Skip to content

Commit 22bc6c2

Browse files
committed
fix(lint): sort the devboxes import block
The generated tree and the custom code each added an import at the same line, so integrating them left `...lib.wait_for_status` inside the `...types.*` block and ruff's isort rule (I001) rejected it. Both symbols are used, so the resolution keeps both and only reorders. Applied by ./scripts/format rather than by hand, so the ordering is whatever ruff wants rather than whatever looked right.
1 parent 7edf2e9 commit 22bc6c2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/runloop_api_client/resources/devboxes/devboxes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@
9292
from ...lib.polling_async import async_poll_until
9393
from ...types.devbox_view import DevboxView
9494
from ...types.tunnel_view import TunnelView
95-
from ...types.mcp_token_view import McpTokenView
9695
from ...lib.wait_for_status import wait_for_status, async_wait_for_status
96+
from ...types.mcp_token_view import McpTokenView
9797
from ...types.pty_tunnel_view import PtyTunnelView
9898
from ...types.gateway_token_view import GatewayTokenView
9999
from ...types.shared_params.mount import Mount

0 commit comments

Comments
 (0)