Skip to content

Commit 308e38b

Browse files
authored
Merge pull request #1199 from jbampton/remove-parens
🧹 Remove unneeded parenthesis from Python function
2 parents 1cea41d + c68fd73 commit 308e38b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dash/dash.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,7 @@ def _generate_scripts_html(self):
601601
)
602602

603603
def _generate_config_html(self):
604-
return ('<script id="_dash-config" type="application/json">{}</script>').format(
604+
return '<script id="_dash-config" type="application/json">{}</script>'.format(
605605
json.dumps(self._config())
606606
)
607607

0 commit comments

Comments
 (0)