Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvain-morin committed Feb 15, 2024
1 parent e36201e commit aba5527
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/inat_vision_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ def h3_04_bounds_route(self):
return results_dict

def bench_route(self):
start = request.args["start"]
count = request.args["count"]
start = int(request.args["start"])
count = int(request.args["count"])
self.inferrer.TIME_DOWNLOAD = 0
self.inferrer.TIME_RESIZE = 0
self.inferrer.TIME_TOTAL = 0
Expand Down

0 comments on commit aba5527

Please sign in to comment.