chainyo commited on
Commit
4f8ddde
·
1 Parent(s): dab96cf

fix type return

Browse files
Files changed (1) hide show
  1. main.py +1 -1
main.py CHANGED
@@ -70,7 +70,7 @@ def get_timers(
70
  return timers
71
 
72
 
73
- def get_plot(timers: Dict[str, Union[float, List[float]]]) -> plotly.graph_objs._figure.Figure:
74
  """
75
  Plot the inference time for each model.
76
 
 
70
  return timers
71
 
72
 
73
+ def get_plot(timers: Dict[str, Union[float, List[float]]]) -> plotly.graph_objs.Figure:
74
  """
75
  Plot the inference time for each model.
76