Skip to content

Commit 495f004

Browse files
committed
Fix mypy
1 parent 47c76bd commit 495f004

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vws/vws.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ def get_database_summary_report(self) -> DatabaseSummaryReport:
528528
current_month_recos=int(response_data["current_month_recos"]),
529529
failed_images=int(response_data["failed_images"]),
530530
inactive_images=int(response_data["inactive_images"]),
531-
name=str(response_data["name"]),
531+
name=str(object=response_data["name"]),
532532
previous_month_recos=int(response_data["previous_month_recos"]),
533533
processing_images=int(response_data["processing_images"]),
534534
reco_threshold=int(response_data["reco_threshold"]),

0 commit comments

Comments
 (0)