Skip to content

Commit

Permalink
Merge pull request #9 from alperendurmus/dev
Browse files Browse the repository at this point in the history
Update timing.py
  • Loading branch information
amir-zeldes authored Oct 22, 2020
2 parents 8d35903 + 87fe0c5 commit 2740d6f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion hebpipe/lib/timing.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import atexit
import sys
from time import clock
from functools import reduce
try:
from time import clock
except ImportError:
from time import process_time as clock

def secondsToStr(t):
return "%d:%02d:%02d.%03d" % \
Expand Down

0 comments on commit 2740d6f

Please sign in to comment.