Skip to content

Commit a181b5d

Browse files
author
Ruslan Gainutdinov
committed
fix: polishing
1 parent 9c98d97 commit a181b5d

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ This package was originally published under `datacrunch` name, see [MIGRATION.md
6060
from verda import VerdaClient
6161
from verda.constants import Actions
6262

63-
# Get credentials from the environment variables
64-
CLIENT_ID = os.environ.get('VERDA_CLIENT_ID')
65-
CLIENT_SECRET = os.environ.get('VERDA_CLIENT_SECRET')
63+
# Get credentials from environment variables
64+
CLIENT_ID = os.environ['VERDA_CLIENT_ID']
65+
CLIENT_SECRET = os.environ['VERDA_CLIENT_SECRET']
6666

6767
# Create client
6868
verda = VerdaClient(CLIENT_ID, CLIENT_SECRET)
@@ -72,7 +72,7 @@ This package was originally published under `datacrunch` name, see [MIGRATION.md
7272

7373
# Create a new instance
7474
instance = verda.instances.create(instance_type='1V100.6V',
75-
image='ubuntu-24.04-cuda-12.6-docker',
75+
image='ubuntu-24.04-cuda-12.8-open-docker',
7676
ssh_key_ids=ssh_keys,
7777
hostname='example',
7878
description='example instance')

0 commit comments

Comments
 (0)