Skip to content

Commit e6e5c09

Browse files
postmastersResponsible ML Infra Team
authored andcommitted
No-op.
PiperOrigin-RevId: 459511349
1 parent 038c976 commit e6e5c09

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

  • tensorboard_plugin/tensorboard_plugin_fairness_indicators

tensorboard_plugin/tensorboard_plugin_fairness_indicators/plugin.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,22 +92,22 @@ def is_active(self):
9292
FairnessIndicatorsPlugin.plugin_name))
9393

9494
@wrappers.Request.application
95-
def _serve_js(self, request):
95+
def _serve_js(self, request): # pytype: disable=wrong-arg-types
9696
filepath = os.path.join(os.path.dirname(__file__), 'static', 'index.js')
9797
with open(filepath) as infile:
9898
contents = infile.read()
9999
return http_util.Respond(
100100
request, contents, content_type='application/javascript')
101101

102102
@wrappers.Request.application
103-
def _serve_vulcanized_js(self, request):
103+
def _serve_vulcanized_js(self, request): # pytype: disable=wrong-arg-types
104104
with open(_TEMPLATE_LOCATION) as infile:
105105
contents = infile.read()
106106
return http_util.Respond(
107107
request, contents, content_type='application/javascript')
108108

109109
@wrappers.Request.application
110-
def _get_evaluation_result(self, request):
110+
def _get_evaluation_result(self, request): # pytype: disable=wrong-arg-types
111111
run = request.args.get('run')
112112
try:
113113
run = six.ensure_text(run)
@@ -136,7 +136,7 @@ def _get_output_file_format(self, evaluation_output_path):
136136
return ''
137137

138138
@wrappers.Request.application
139-
def _get_evaluation_result_from_remote_path(self, request):
139+
def _get_evaluation_result_from_remote_path(self, request): # pytype: disable=wrong-arg-types
140140
evaluation_output_path = request.args.get('evaluation_output_path')
141141
try:
142142
evaluation_output_path = six.ensure_text(evaluation_output_path)

0 commit comments

Comments
 (0)