Skip to content

Commit ab4e37d

Browse files
committed
Fixed missing super call in AreaRangeOptions.
1 parent 699d851 commit ab4e37d

File tree

1 file changed

+2
-0
lines changed
  • highcharts_core/options/plot_options

1 file changed

+2
-0
lines changed

highcharts_core/options/plot_options/area.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,8 @@ def __init__(self, **kwargs):
227227

228228
self.low_marker = kwargs.get('low_marker', None)
229229

230+
super().__init__(**kwargs)
231+
230232
@property
231233
def low_marker(self) -> Optional[Marker]:
232234
"""Options for the point markers of line-like series.

0 commit comments

Comments
 (0)