attribute 模型名称错误

This commit is contained in:
zhouchengrong
2024-03-27 13:17:41 +08:00
parent 5f5617d5a3
commit d4be7b8053
14 changed files with 897 additions and 13 deletions

View File

@@ -9,6 +9,7 @@ def RunTime(func):
t2 = time.time()
if t2 - t1 > 0.05:
logging.info(f"function{func.__name__}】,runtime{str(t2 - t1)}】s")
print(f"function{func.__name__}】,runtime{str(t2 - t1)}】s")
return res
return wrapper