File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -716,8 +716,8 @@ def target_summary(
716716 'upload_date' : target .upload_date .strftime ('%Y-%m-%d' ),
717717 'active_flag' : target .active_flag ,
718718 'tracking_rating' : target .tracking_rating ,
719- 'total_recos' : '' ,
720- 'current_month_recos' : '' ,
721- 'previous_month_recos' : '' ,
719+ 'total_recos' : 0 ,
720+ 'current_month_recos' : 0 ,
721+ 'previous_month_recos' : 0 ,
722722 }
723723 return json_dump (body )
Original file line number Diff line number Diff line change @@ -195,5 +195,9 @@ class TestRecognitionCounts:
195195 Tests for the recognition counts in the summary.
196196 """
197197
198- def test_recognition (self ):
198+ def test_recognition (self ) -> None :
199+ """
200+ See https://github.com/adamtheturtle/vws-python/issues/357 for
201+ implementing this.
202+ """
199203 pass
You can’t perform that action at this time.
0 commit comments