@@ -46,12 +46,12 @@ def __init__(self, bom: 'Bom', **kwargs: int) -> None:
46
46
@property
47
47
@abstractmethod
48
48
def schema_version (self ) -> SchemaVersion :
49
- ...
49
+ ... # pragma: no cover
50
50
51
51
@property
52
52
@abstractmethod
53
53
def output_format (self ) -> OutputFormat :
54
- ...
54
+ ... # pragma: no cover
55
55
56
56
@property
57
57
def generated (self ) -> bool :
@@ -69,13 +69,13 @@ def set_bom(self, bom: 'Bom') -> None:
69
69
70
70
@abstractmethod
71
71
def generate (self , force_regeneration : bool = False ) -> None :
72
- ...
72
+ ... # pragma: no cover
73
73
74
74
@abstractmethod
75
75
def output_as_string (self , * ,
76
76
indent : Optional [Union [int , str ]] = None ,
77
77
** kwargs : Any ) -> str :
78
- ...
78
+ ... # pragma: no cover
79
79
80
80
def output_to_file (self , filename : str , allow_overwrite : bool = False , * ,
81
81
indent : Optional [Union [int , str ]] = None ,
@@ -94,19 +94,19 @@ def output_to_file(self, filename: str, allow_overwrite: bool = False, *,
94
94
@overload
95
95
def make_outputter (bom : 'Bom' , output_format : Literal [OutputFormat .JSON ],
96
96
schema_version : SchemaVersion ) -> 'JsonOutputter' :
97
- ...
97
+ ... # pragma: no cover
98
98
99
99
100
100
@overload
101
101
def make_outputter (bom : 'Bom' , output_format : Literal [OutputFormat .XML ],
102
102
schema_version : SchemaVersion ) -> 'XmlOutputter' :
103
- ...
103
+ ... # pragma: no cover
104
104
105
105
106
106
@overload
107
107
def make_outputter (bom : 'Bom' , output_format : OutputFormat ,
108
108
schema_version : SchemaVersion ) -> Union ['XmlOutputter' , 'JsonOutputter' ]:
109
- ...
109
+ ... # pragma: no cover
110
110
111
111
112
112
def make_outputter (bom : 'Bom' , output_format : OutputFormat , schema_version : SchemaVersion ) -> BaseOutput :
0 commit comments