Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tensorboard/plugins/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ exports_files(["LICENSE"])
py_library(
name = "base_plugin",
srcs = ["base_plugin.py"],
srcs_version = "PY2AND3",
srcs_version = "PY3",
visibility = ["//visibility:public"],
deps = [
"@org_pythonhosted_six",
Expand Down
6 changes: 4 additions & 2 deletions tensorboard/plugins/base_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,12 +117,13 @@ class FrontendMetadata(object):

def __init__(
self,
*,
disable_reload=None,
element_name=None,
es_module_path=None,
remove_dom=None,
tab_name=None,
is_ng_component=None,
is_ng_component=None
):
"""Creates a `FrontendMetadata` value.

Expand Down Expand Up @@ -246,6 +247,7 @@ class TBContext(object):

def __init__(
self,
*,
assets_zip_provider=None,
data_provider=None,
db_connection_provider=None,
Expand All @@ -255,7 +257,7 @@ def __init__(
multiplexer=None,
plugin_name_to_instance=None,
sampling_hints=None,
window_title=None,
window_title=None
):
"""Instantiates magic container.

Expand Down