Commit c272ea22 authored by 张彦钊's avatar 张彦钊

fix time cost bug

parent e598c182
......@@ -99,7 +99,7 @@ if __name__ == "__main__":
for device_id in device_id_list:
router(device_id)
end = time.time()
time_cost = (end - start)
print("预测耗时{}秒".format(time_cost))
end = time.time()
time_cost = (end - start)
print("预测耗时{}秒".format(time_cost))
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment