Skip to content

Commit

Permalink
switch to super in RailStage constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
joezuntz committed Jul 11, 2024
1 parent 2112c52 commit 0b812ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rail/core/stage.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ class RailStage(PipelineStage):
def __init__(self, args, **kwargs):
"""Constructor:
Do RailStage specific initialization"""
PipelineStage.__init__(self, args, **kwargs)
super().__init__(args, **kwargs)
self._input_length = None
self.io = StageIO(self)

Expand Down

0 comments on commit 0b812ad

Please sign in to comment.