We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a89388 commit 55f37f3Copy full SHA for 55f37f3
1 file changed
src/imcflibs/imagej/misc.py
@@ -30,19 +30,18 @@ def error_exit(msg):
30
31
32
def elapsed_time_since(start, end=None):
33
- """Prints the elapsed time for execution
+ """Generate a string with the time elapsed between the two timepoints.
34
35
Parameters
36
----------
37
- start : time
38
- Start time
39
- end : time, optional
40
- End time
+ start : time.time
+ Start time.
+ end : time.time, optional
+ End time. If skipped the current time will be used.
41
42
Returns
43
-------
44
str
45
- Formatted time elapsed
46
"""
47
48
if not end:
0 commit comments