flows: fix formatting

This commit is contained in:
Jens Langhammer 2020-09-26 14:19:42 +02:00
parent 7e9d7e5198
commit 7aa89c6d4f
1 changed files with 1 additions and 1 deletions

View File

@ -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