We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63713d6 commit 7edfe30Copy full SHA for 7edfe30
src/deno_sandbox/volumes.py
@@ -2,7 +2,7 @@
2
from pydantic import BaseModel
3
from pydantic_core import Url
4
5
-from deno_sandbox.console import ConsoleClient
+from deno_sandbox.console import AsyncConsoleClient
6
from deno_sandbox.options import Options, get_internal_options
7
8
@@ -29,7 +29,7 @@ class Volume(BaseModel):
29
class AsyncVolumes:
30
def __init__(self, options: Options | None = None):
31
internal_options = get_internal_options(options or Options())
32
- self.__client = ConsoleClient(internal_options)
+ self.__client = AsyncConsoleClient(internal_options)
33
34
async def create(self, options: VolumeCreateOptions):
35
json = await self.__client.post("/api/v2/volumes", options)
0 commit comments