Skip to content
This repository has been archived by the owner on Dec 31, 2023. It is now read-only.

Commit

Permalink
fix: fix samples
Browse files Browse the repository at this point in the history
  • Loading branch information
busunkim96 committed Aug 6, 2021
1 parent 757f4ce commit 0ce21a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion samples/snippets/quickstart.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def create_instance(
initialize_params.source_image = (
source_image # "projects/debian-cloud/global/images/family/debian-10"
)
initialize_params.disk_size_gb = "10"
initialize_params.disk_size_gb = 10
disk.initialize_params = initialize_params
disk.auto_delete = True
disk.boot = True
Expand Down
2 changes: 1 addition & 1 deletion samples/snippets/test_sample_start_stop.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def _make_disk(raw_key: bytes = None):
initialize_params.source_image = (
"projects/debian-cloud/global/images/family/debian-10"
)
initialize_params.disk_size_gb = "10"
initialize_params.disk_size_gb = 10
disk.initialize_params = initialize_params
disk.auto_delete = True
disk.boot = True
Expand Down

0 comments on commit 0ce21a2

Please sign in to comment.