Skip to content

Commit ec90578

Browse files
jbamptonchriddyp
authored andcommitted
Remove unnecessary parens - ()
1 parent d012158 commit ec90578

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dash/dash.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ def index(self, *args, **kwargs):
284284
css = self._generate_css_dist_html()
285285
config = self._generate_config_html()
286286
title = getattr(self, 'title', 'Dash')
287-
return ('''
287+
return '''
288288
<!DOCTYPE html>
289289
<html>
290290
<head>
@@ -304,7 +304,7 @@ def index(self, *args, **kwargs):
304304
</footer>
305305
</body>
306306
</html>
307-
'''.format(title, css, config, scripts))
307+
'''.format(title, css, config, scripts)
308308

309309
def dependencies(self):
310310
return flask.jsonify([

0 commit comments

Comments
 (0)