Skip to content

Commit

Permalink
Remove unnecessary parens - ()
Browse files Browse the repository at this point in the history
  • Loading branch information
jbampton authored and chriddyp committed Nov 29, 2017
1 parent d012158 commit ec90578
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dash/dash.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ def index(self, *args, **kwargs):
css = self._generate_css_dist_html()
config = self._generate_config_html()
title = getattr(self, 'title', 'Dash')
return ('''
return '''
<!DOCTYPE html>
<html>
<head>
Expand All @@ -304,7 +304,7 @@ def index(self, *args, **kwargs):
</footer>
</body>
</html>
'''.format(title, css, config, scripts))
'''.format(title, css, config, scripts)

def dependencies(self):
return flask.jsonify([
Expand Down

0 comments on commit ec90578

Please sign in to comment.