Skip to content

Commit f1fd2f0

Browse files
jbamptonMarc-Andre-Rivet
authored andcommitted
🧹 Remove unneeded parenthesis (#1082)
1 parent 735480b commit f1fd2f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dash/development/_r_components_generation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ def generate_js_metadata(pkg_data, project_shortname):
341341
def get_async_type(dep):
342342
async_or_dynamic = ""
343343
for key in dep.keys():
344-
if (key in ['async', 'dynamic']):
344+
if key in ['async', 'dynamic']:
345345
keyval = dep[key]
346346
if not isinstance(keyval, bool):
347347
keyval = "'{}'".format(keyval.lower())

0 commit comments

Comments
 (0)