Skip to content

Commit ba8457c

Browse files
committed
Progress
1 parent 560a536 commit ba8457c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vws/vws.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -533,13 +533,13 @@ def update_target(
533533
already exists.
534534
~vws.exceptions.ProjectInactive: The project is inactive.
535535
"""
536-
data = {}
536+
data: Dict[str, Union[str, bool, float, int]] = {}
537537

538538
if name is not None:
539539
data['name'] = name
540540

541541
if width is not None:
542-
data['width'] = str(width)
542+
data['width'] = width
543543

544544
if image is not None:
545545
image_data = image.getvalue()

0 commit comments

Comments
 (0)