Skip to content

Commit 4e583e3

Browse files
committed
Fix list[str] > List[str]
1 parent d5b0ebe commit 4e583e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dash/development/base_component.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ class Component(metaclass=ComponentMeta):
7878
_base_nodes = ["children"]
7979
_namespace: str
8080
_type: str
81-
_prop_names: list[str]
81+
_prop_names: typing.List[str]
8282

8383
_valid_wildcard_attributes: typing.List[str]
8484
available_wildcard_properties: typing.List[str]

0 commit comments

Comments
 (0)