Skip to content

Commit 11d7545

Browse files
committed
Fix, remove the default argument before non-default arguments
1 parent 429153c commit 11d7545

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/scripts/add-volume.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ def login(con, credential):
4848
print('Login failed')
4949

5050

51-
def add_volume(sto, name, pool_name, size, shareable=False,
52-
description, provisionType):
51+
def add_volume(sto, name, pool_name, size, shareable, description,
52+
provisionType):
5353
pools = sto.get_storage_pools()
5454
for pool in pools['members']:
5555
if pool['name'] == pool_name:

0 commit comments

Comments
 (0)