Skip to content

Commit 6cfd5c7

Browse files
committed
remove needless list()
1 parent a4dc60b commit 6cfd5c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dash/development/_py_components_generation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -557,7 +557,7 @@ def shape_or_exact():
557557
default=prop.get("defaultValue"),
558558
indent_num=indent_num + 2,
559559
)
560-
for prop_name, prop in list(type_object["value"].items())
560+
for prop_name, prop in type_object["value"].items()
561561
)
562562

563563
def array_of():

0 commit comments

Comments
 (0)