Skip to content

Commit

Permalink
feat: remove outdated theme option
Browse files Browse the repository at this point in the history
BREAKING CHANGE: theme config parameter removed
  • Loading branch information
sbrugman committed Jun 27, 2022
1 parent b491a2f commit d871728
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions popmon/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@
# (see https://joblib.readthedocs.io/en/latest/generated/joblib.Parallel.html for details)
parallel_args = {"n_jobs": 1}

# Usage the `ing_matplotlib_theme`
themed = True


class SectionModel(BaseModel):
name: str
Expand Down Expand Up @@ -162,6 +159,9 @@ class Report(BaseModel):
"""if True, show all the generated statistics in the report (optional)
if set to False, then smaller show_stats (see below)"""

online_report: bool = True
"""Use a CDN to host resources, or embed them into the report."""

show_stats: List[str] = [
"distinct*",
"filled*",
Expand Down

0 comments on commit d871728

Please sign in to comment.