Get the current time back :rtype: float :returns: The current time in seconds
(self)
| 42 | |
| 43 | class TimeUtils: |
| 44 | def time(self): |
| 45 | """Get the current time back |
| 46 | |
| 47 | :rtype: float |
| 48 | :returns: The current time in seconds |
| 49 | """ |
| 50 | return time.time() |
| 51 | |
| 52 | def sleep(self, value): |
| 53 | """Sleep for a designated time |
no outgoing calls