File tree Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -486,7 +486,15 @@ def _run(self) -> bool:
486
486
"""
487
487
self ._original_state = deepcopy (self .state )
488
488
done = False
489
- self .ready = self .root .ready
489
+
490
+ # TODO: Re-enable the `ready` property once issues are resolved
491
+ if not self .root .ready :
492
+ warnings .warn (
493
+ "One of your Flows returned `.ready` as `False`. "
494
+ "This feature is not yet enabled so this will be ignored." ,
495
+ UserWarning ,
496
+ )
497
+ self .ready = True
490
498
491
499
self ._start_with_flow_works ()
492
500
Original file line number Diff line number Diff line change @@ -232,7 +232,10 @@ def __getattr__(self, item):
232
232
233
233
@property
234
234
def ready (self ) -> bool :
235
- """Override to customize when your App should be ready."""
235
+ """Not currently enabled.
236
+
237
+ Override to customize when your App should be ready.
238
+ """
236
239
flows = self .flows
237
240
return all (flow .ready for flow in flows .values ()) if flows else True
238
241
You can’t perform that action at this time.
0 commit comments