Skip to content

Commit 47d6b17

Browse files
committed
feat(config): settings required parameter
1 parent 74eb223 commit 47d6b17

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

popmon/visualization/alert_section_generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ def __init__(
4242
self,
4343
read_key,
4444
store_key,
45+
settings: Report,
4546
features=None,
4647
ignore_features=None,
47-
settings: Report = None,
4848
static_bounds=None,
4949
dynamic_bounds=None,
5050
prefix="traffic_light_",

popmon/visualization/histogram_section.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ def __init__(
4646
self,
4747
read_key,
4848
store_key,
49+
settings: HistogramSectionModel,
4950
features=None,
50-
settings: HistogramSectionModel = None,
5151
ignore_features=None,
5252
hist_names=None,
5353
hist_name_starts_with="histogram",

popmon/visualization/traffic_light_section_generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ def __init__(
4747
self,
4848
read_key,
4949
store_key,
50+
settings: Report,
5051
features=None,
5152
ignore_features=None,
52-
settings: Report = None,
5353
static_bounds=None,
5454
dynamic_bounds=None,
5555
prefix="traffic_light_",

0 commit comments

Comments
 (0)