Skip to content

Commit

Permalink
refactor: add type hint (#73)
Browse files Browse the repository at this point in the history
Helps with code completion and syntax highlighting.
  • Loading branch information
lukany committed Aug 10, 2023
1 parent 307c40a commit 59b1c81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions edvart/report.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from edvart.report_sections.dataset_overview import Overview
from edvart.report_sections.group_analysis import GroupAnalysis
from edvart.report_sections.multivariate_analysis import MultivariateAnalysis
from edvart.report_sections.section_base import Verbosity
from edvart.report_sections.section_base import Section, Verbosity
from edvart.report_sections.table_of_contents import TableOfContents
from edvart.report_sections.timeseries_analysis import TimeseriesAnalysis
from edvart.report_sections.univariate_analysis import UnivariateAnalysis
Expand All @@ -44,7 +44,7 @@ def __init__(
):
self._class_logger = logging.getLogger(__name__).getChild(self.__class__.__name__)
self.df = dataframe
self.sections = []
self.sections: list[Section] = []
self.verbosity = Verbosity(verbosity)

def show(self) -> None:
Expand Down

0 comments on commit 59b1c81

Please sign in to comment.