Browse Source

修改: tools/resume_parse.py

xzc 3 years ago
parent
commit
7ebccfa9dd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tools/resume_parse.py

+ 1 - 1
tools/resume_parse.py

@@ -87,7 +87,7 @@ def time_this_function(func):
         start=time.time()
         result=func(*args, **kwargs)
         end=time.time()
-        console.print("函数:", func.__name__, "运行时间:", round(end - start, 4), "s")
+        console.print("函数:",func.__name__,"运行时间:", round(end - start, 4),"s")
         return result
     return wrapper