Skip to content

Commit

Permalink
[air-output] better wording for empty config. (ray-project#33811)
Browse files Browse the repository at this point in the history
* [air-output] better wording for empty config.

Signed-off-by: xwjiang2010 <[email protected]>
Signed-off-by: elliottower <[email protected]>
  • Loading branch information
xwjiang2010 authored and elliottower committed Apr 22, 2023
1 parent 717d403 commit f1f87a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/ray/tune/experimental/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ def on_checkpoint(
def on_trial_start(self, iteration: int, trials: List[Trial], trial: Trial, **info):
if self._verbosity < self._start_end_verbosity:
return
has_config = trial.config is not None
has_config = bool(trial.config)
print(
" ".join(
[
Expand Down

0 comments on commit f1f87a4

Please sign in to comment.