(self, lib: Library, opts, args: list[str])
| 76 | return [cmd] |
| 77 | |
| 78 | def command(self, lib: Library, opts, args: list[str]) -> None: |
| 79 | force = self.config["force"].get(bool) or opts.force |
| 80 | quiet = self.config["quiet"].get(bool) or opts.quiet |
| 81 | self.calculate_bpm( |
| 82 | list(lib.items(args)), |
| 83 | write=should_write(), |
| 84 | force=force, |
| 85 | quiet=quiet, |
| 86 | ) |
| 87 | |
| 88 | def imported(self, _, task: ImportTask) -> None: |
| 89 | self.calculate_bpm( |
nothing calls this directly
no test coverage detected