From ae312af435a050c4ffb6891e78ccb71e1aae4740 Mon Sep 17 00:00:00 2001 From: Edward Oakes Date: Tue, 2 Jun 2020 12:29:17 -0500 Subject: [PATCH] Remove accidental passes in rllib, tune (#8742) --- python/ray/tune/tune.py | 1 - rllib/train.py | 1 - 2 files changed, 2 deletions(-) diff --git a/python/ray/tune/tune.py b/python/ray/tune/tune.py index a3fe779cb..c82565e4d 100644 --- a/python/ray/tune/tune.py +++ b/python/ray/tune/tune.py @@ -233,7 +233,6 @@ def run(run_or_experiment, space = {"lr": tune.uniform(0, 1), "momentum": tune.uniform(0, 1)} tune.run(my_trainable, config=space, stop={"training_iteration": 10}) """ - pass # XXX: force CI trial_executor = trial_executor or RayTrialExecutor( queue_trials=queue_trials, reuse_actors=reuse_actors, diff --git a/rllib/train.py b/rllib/train.py index 65a5e0e09..a6232e3b4 100755 --- a/rllib/train.py +++ b/rllib/train.py @@ -135,7 +135,6 @@ def create_parser(parser_creator=None): def run(args, parser): - pass # XXX: force CI if args.config_file: with open(args.config_file) as f: experiments = yaml.safe_load(f)