Skip to content

Commit 4b1c35e

Browse files
authored
Merge pull request #981 from jbampton/remove-parens
🧹 remove unneeded parens
2 parents d465736 + 658f8bf commit 4b1c35e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dash/testing/application_runners.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ def start(self, app, start_timeout=2, cwd=None):
255255
"""Start the server with subprocess and Rscript."""
256256

257257
# app is a R string chunk
258-
if (os.path.isfile(app) and os.path.exists(app)):
258+
if os.path.isfile(app) and os.path.exists(app):
259259
# app is already a file in a dir - use that as cwd
260260
if not cwd:
261261
cwd = os.path.dirname(app)

0 commit comments

Comments
 (0)