Get the time session lasted in seconds
(self)
| 5849 | ) |
| 5850 | |
| 5851 | def run_time(self): |
| 5852 | """Get the time session lasted in seconds""" |
| 5853 | |
| 5854 | real_time = time.time() |
| 5855 | run_time = real_time - self.start_time |
| 5856 | run_time = truncate_float(run_time, 2) |
| 5857 | |
| 5858 | return run_time |
| 5859 | |
| 5860 | def check_character_set(self, unistr): |
| 5861 | self.check_letters = {} |
no test coverage detected