|
@@ -51,9 +51,11 @@ def get_content(self) -> str:
|
|
return self._top() + self._preamble + self._body + self._bottom()
|
|
return self._top() + self._preamble + self._body + self._bottom()
|
|
|
|
|
|
def _top(self) -> str:
|
|
def _top(self) -> str:
|
|
|
|
+ # pylint: disable=no-self-use
|
|
return ''
|
|
return ''
|
|
|
|
|
|
def _bottom(self) -> str:
|
|
def _bottom(self) -> str:
|
|
|
|
+ # pylint: disable=no-self-use
|
|
return ''
|
|
return ''
|
|
|
|
|
|
def write(self, output_dir: str) -> None:
|
|
def write(self, output_dir: str) -> None:
|