Return the list of tracked classes matching the input string.
(s: str)
| 321 | |
| 322 | |
| 323 | def string_to_classes(s: str) -> list[str]: |
| 324 | """Return the list of tracked classes matching the input string.""" |
| 325 | if s == "*": |
| 326 | c = sorted(tracked_classes) |
| 327 | return c |
| 328 | else: |
| 329 | return s.split() |
| 330 | |
| 331 | |
| 332 | def fetch_logged_instances(classes: str = "*") -> list[tuple[str, int]]: |
no outgoing calls
no test coverage detected