flows: fix formatting
This commit is contained in:
parent
7e9d7e5198
commit
7aa89c6d4f
|
@ -46,7 +46,7 @@ class FlowPlan:
|
||||||
self.stages.append(stage)
|
self.stages.append(stage)
|
||||||
self.markers.append(marker or StageMarker())
|
self.markers.append(marker or StageMarker())
|
||||||
|
|
||||||
def next(self, offset = 0) -> Optional[Stage]:
|
def next(self, offset=0) -> Optional[Stage]:
|
||||||
"""Return next pending stage from the bottom of the list"""
|
"""Return next pending stage from the bottom of the list"""
|
||||||
if not self.has_stages:
|
if not self.has_stages:
|
||||||
return None
|
return None
|
||||||
|
|
Reference in New Issue