mirror of
https://github.com/wassname/ray.git
synced 2026-07-03 02:00:12 +08:00
Enforce quoting style in Travis. (#4589)
This commit is contained in:
committed by
Robert Nishihara
parent
6697407ec4
commit
e88e706fcc
@@ -43,9 +43,9 @@ def list_trials(experiment_path, sort, output, filter_op, columns,
|
||||
result_columns):
|
||||
"""Lists trials in the directory subtree starting at the given path."""
|
||||
if columns:
|
||||
columns = columns.split(',')
|
||||
columns = columns.split(",")
|
||||
if result_columns:
|
||||
result_columns = result_columns.split(',')
|
||||
result_columns = result_columns.split(",")
|
||||
commands.list_trials(experiment_path, sort, output, filter_op, columns,
|
||||
result_columns)
|
||||
|
||||
@@ -75,7 +75,7 @@ def list_trials(experiment_path, sort, output, filter_op, columns,
|
||||
def list_experiments(project_path, sort, output, filter_op, columns):
|
||||
"""Lists experiments in the directory subtree."""
|
||||
if columns:
|
||||
columns = columns.split(',')
|
||||
columns = columns.split(",")
|
||||
commands.list_experiments(project_path, sort, output, filter_op, columns)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user