Create an instance of the TUI app
(self)
| 94 | self.initial_group_cols = initial_group_cols or ['state'] |
| 95 | |
| 96 | def create_app(self): |
| 97 | """Create an instance of the TUI app""" |
| 98 | return self.XTopTUI( |
| 99 | datadir=self.datadir, |
| 100 | initial_group_by=self.initial_group_cols, # Use correct parameter name |
| 101 | low_time=DEFAULT_LOW_TIME, |
| 102 | high_time=DEFAULT_HIGH_TIME |
| 103 | ) |
| 104 | |
| 105 | |
| 106 | # Test helper functions |
no outgoing calls
no test coverage detected