Removed no cover pragma

This commit is contained in:
Andrew Murray 2024-02-10 22:37:42 +11:00
parent d02a778efd
commit 8ef0ffc2b8

View File

@ -184,7 +184,7 @@ class UnixViewer(Viewer):
@abc.abstractmethod
def get_command_ex(self, file: str, **options: Any) -> tuple[str, str]:
pass # pragma: no cover
pass
def get_command(self, file: str, **options: Any) -> str:
command = self.get_command_ex(file, **options)[0]