(self)
| 3693 | # the information is analyzed by the AnalysisLabel class. |
| 3694 | class Stats: |
| 3695 | def __init__(self): |
| 3696 | # set up data variables |
| 3697 | self.initialize_session() |
| 3698 | self.history = [] |
| 3699 | self.full_history = [] # not just today |
| 3700 | self.sessions_today = 0 |
| 3701 | self.time_today = 0 |
| 3702 | self.time_thours = 0 |
| 3703 | self.sessions_thours = 0 |
| 3704 | |
| 3705 | def parse_statsfile(self): |
| 3706 | self.clear() |
nothing calls this directly
no test coverage detected