@@ -46,12 +46,12 @@ def __init__(self, bom: 'Bom', **kwargs: int) -> None:
4646 @property
4747 @abstractmethod
4848 def schema_version (self ) -> SchemaVersion :
49- ...
49+ ... # pragma: no cover
5050
5151 @property
5252 @abstractmethod
5353 def output_format (self ) -> OutputFormat :
54- ...
54+ ... # pragma: no cover
5555
5656 @property
5757 def generated (self ) -> bool :
@@ -69,13 +69,13 @@ def set_bom(self, bom: 'Bom') -> None:
6969
7070 @abstractmethod
7171 def generate (self , force_regeneration : bool = False ) -> None :
72- ...
72+ ... # pragma: no cover
7373
7474 @abstractmethod
7575 def output_as_string (self , * ,
7676 indent : Optional [Union [int , str ]] = None ,
7777 ** kwargs : Any ) -> str :
78- ...
78+ ... # pragma: no cover
7979
8080 def output_to_file (self , filename : str , allow_overwrite : bool = False , * ,
8181 indent : Optional [Union [int , str ]] = None ,
@@ -94,19 +94,19 @@ def output_to_file(self, filename: str, allow_overwrite: bool = False, *,
9494@overload
9595def make_outputter (bom : 'Bom' , output_format : Literal [OutputFormat .JSON ],
9696 schema_version : SchemaVersion ) -> 'JsonOutputter' :
97- ...
97+ ... # pragma: no cover
9898
9999
100100@overload
101101def make_outputter (bom : 'Bom' , output_format : Literal [OutputFormat .XML ],
102102 schema_version : SchemaVersion ) -> 'XmlOutputter' :
103- ...
103+ ... # pragma: no cover
104104
105105
106106@overload
107107def make_outputter (bom : 'Bom' , output_format : OutputFormat ,
108108 schema_version : SchemaVersion ) -> Union ['XmlOutputter' , 'JsonOutputter' ]:
109- ...
109+ ... # pragma: no cover
110110
111111
112112def make_outputter (bom : 'Bom' , output_format : OutputFormat , schema_version : SchemaVersion ) -> BaseOutput :
0 commit comments