Skip to content

Commit

Permalink
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions google/cloud/aiplatform/tensorboard/uploader_tracker.py
Original file line number Diff line number Diff line change
@@ -255,11 +255,12 @@ def _create_uploader(
)

plugins = uploader_constants.ALLOWED_PLUGINS
plugins += [
plugin
for plugin in allowed_plugins
if plugin not in uploader_constants.ALLOWED_PLUGINS
]
if allowed_plugins:
plugins += [
plugin
for plugin in allowed_plugins
if plugin not in uploader_constants.ALLOWED_PLUGINS
]

tensorboard_uploader = TensorBoardUploader(
experiment_name=tensorboard_experiment_name,

0 comments on commit 6f2860a

Please sign in to comment.