Skip to content

Commit

Permalink
Ran linter
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanmkc committed Apr 30, 2021
1 parent ae5dfa1 commit 332e3e2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion google/cloud/aiplatform/training_jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -2920,7 +2920,8 @@ def _run(
if self._column_transformations is None:
column_transformations = [
{"auto": {"column_name": column_name}}
for column_name in dataset.column_names if column_name != target_column
for column_name in dataset.column_names
if column_name != target_column
]
else:
column_transformations = self._column_transformations
Expand Down

0 comments on commit 332e3e2

Please sign in to comment.