(self)
| 35 | self.subcategory_level = 0 |
| 36 | |
| 37 | def elapsed(self): |
| 38 | end = time.time() |
| 39 | res = end - self.start |
| 40 | self.start = end |
| 41 | return res |
| 42 | |
| 43 | def add_time_to_record(self, category, amount): |
| 44 | if category not in self.records: |
no outgoing calls
no test coverage detected