CCFlows / CF_CodeDebugCollab.py
martinjosifoski's picture
Remove dep. on application_flows & misc updates.
91b62cb
raw
history blame
No virus
302 Bytes
from flows.base_flows import CircularFlow
class CF_CodeDebugCollab(CircularFlow):
def __init__(self, **kwargs):
super().__init__(**kwargs)
def _early_exit(self):
if self.flow_state.get("all_tests_passed", False):
return True
return super()._early_exit()