Skip to content

Commit 9d3528e

Browse files
committed
🐛 add missing argument to abc for reports
1 parent a606456 commit 9d3528e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vuegen/report.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -829,13 +829,13 @@ def run_report(self, output_dir: str = "sections") -> None:
829829
pass
830830

831831
@abstractmethod
832-
def _generate_component_imports(self) -> str:
832+
def _generate_component_imports(self, component: Component) -> str:
833833
"""
834834
Generate necessary imports for a component of the report.
835835
836836
Parameters
837837
----------
838-
component : r.Component
838+
component : Component
839839
The component for which to generate the required imports.
840840
The component can be of type:
841841
- PLOT

0 commit comments

Comments
 (0)