| 88 | |
| 89 | |
| 90 | class Processor(ABC): |
| 91 | # logic for processing the datasets |
| 92 | # filtering out bad data |
| 93 | # data transformations |
| 94 | # if you wanna use kind a workflow, implement it in here |
| 95 | def process(self): |
| 96 | raise NotImplementedError() |
| 97 | |
| 98 | |
| 99 | class Analyser(ABC): |
nothing calls this directly
no outgoing calls
no test coverage detected