Skip to content

Commit

Permalink
Merge pull request #10 from amir-zeldes/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
amir-zeldes authored Oct 22, 2020
2 parents 89c8e4b + 2740d6f commit 53cb31c
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 53cb31c

Please sign in to comment.