Skip to content

Commit

Permalink
feat(config): settings required parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrugman committed Jul 4, 2022
1 parent 74eb223 commit 47d6b17
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion popmon/visualization/alert_section_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ def __init__(
self,
read_key,
store_key,
settings: Report,
features=None,
ignore_features=None,
settings: Report = None,
static_bounds=None,
dynamic_bounds=None,
prefix="traffic_light_",
Expand Down
2 changes: 1 addition & 1 deletion popmon/visualization/histogram_section.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ def __init__(
self,
read_key,
store_key,
settings: HistogramSectionModel,
features=None,
settings: HistogramSectionModel = None,
ignore_features=None,
hist_names=None,
hist_name_starts_with="histogram",
Expand Down
2 changes: 1 addition & 1 deletion popmon/visualization/traffic_light_section_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ def __init__(
self,
read_key,
store_key,
settings: Report,
features=None,
ignore_features=None,
settings: Report = None,
static_bounds=None,
dynamic_bounds=None,
prefix="traffic_light_",
Expand Down

0 comments on commit 47d6b17

Please sign in to comment.