Skip to content

Commit 9a102f5

Browse files
Fix syntax error
Signed-off-by: Saravanan Raju <saravanan.footloose@gmail.com>
1 parent 1baa945 commit 9a102f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cdpy/dw.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def create_vw(self, cluster_id:str, dbc_id:str, vw_type:str, name:str, template:
107107

108108
tag_list = []
109109
for item in tags:
110-
tag_list = tag_list.append({'key': item.key, 'value': item.value})
110+
tag_list.append({'key': item.key, 'value': item.value})
111111

112112
return self.sdk.call(
113113
svc='dw', func='create_vw', ret_field='vwId', clusterId=cluster_id, dbcId=dbc_id,

0 commit comments

Comments
 (0)