We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a34533f commit 6f2860aCopy full SHA for 6f2860a
google/cloud/aiplatform/tensorboard/uploader_tracker.py
@@ -255,11 +255,12 @@ def _create_uploader(
255
)
256
257
plugins = uploader_constants.ALLOWED_PLUGINS
258
- plugins += [
259
- plugin
260
- for plugin in allowed_plugins
261
- if plugin not in uploader_constants.ALLOWED_PLUGINS
262
- ]
+ if allowed_plugins:
+ plugins += [
+ plugin
+ for plugin in allowed_plugins
+ if plugin not in uploader_constants.ALLOWED_PLUGINS
263
+ ]
264
265
tensorboard_uploader = TensorBoardUploader(
266
experiment_name=tensorboard_experiment_name,
0 commit comments