(self)
| 9 | |
| 10 | class CategoriesConverter: |
| 11 | def __init__(self): |
| 12 | args = self.parse_args() |
| 13 | self.categories = CategoriesTxt(args.categories) |
| 14 | self.should_format = args.format |
| 15 | self.output = args.output |
| 16 | |
| 17 | |
| 18 | def process(self): |
nothing calls this directly
no test coverage detected