Skip to content

Commit a92f389

Browse files
committed
use snake case function names to match actual python function defs
1 parent 8bd43b4 commit a92f389

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/runloop_api_client/resources/devboxes/devboxes.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -913,7 +913,7 @@ def execute_async(
913913
)
914914

915915
@typing_extensions.deprecated("deprecated")
916-
# Use execute, executeAsync, or executeAndAwaitCompletion instead
916+
# Use execute, execute_async, or execute_and_await_completion instead
917917
def execute_sync(
918918
self,
919919
id: str,
@@ -935,7 +935,7 @@ def execute_sync(
935935
execution.
936936
937937
.. deprecated::
938-
Use execute, executeAsync, or executeAndAwaitCompletion instead.
938+
Use execute, execute_async, or execute_and_await_completion instead.
939939
940940
Args:
941941
command: The command to execute via the Devbox shell. By default, commands are run from
@@ -2394,7 +2394,7 @@ async def execute_async(
23942394
)
23952395

23962396
@typing_extensions.deprecated("deprecated")
2397-
# Use execute, executeAsync, or executeAndAwaitCompletion instead
2397+
# Use execute, execute_async, or execute_and_await_completion instead
23982398
async def execute_sync(
23992399
self,
24002400
id: str,
@@ -2416,7 +2416,7 @@ async def execute_sync(
24162416
execution.
24172417
24182418
.. deprecated::
2419-
Use execute, executeAsync, or executeAndAwaitCompletion instead.
2419+
Use execute, execute_async, or execute_and_await_completion instead.
24202420
24212421
Args:
24222422
command: The command to execute via the Devbox shell. By default, commands are run from

0 commit comments

Comments
 (0)