File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -145,7 +145,8 @@ def __init__(
145145 ):
146146 super ().__init__ (component_id , component_property )
147147 self .allow_optional = allow_optional
148- self .allowed_wildcards = (MATCH , ALL , ALLSMALLER )
148+
149+ allowed_wildcards = (MATCH , ALL , ALLSMALLER )
149150
150151
151152class State (DashDependency ): # pylint: disable=too-few-public-methods
@@ -159,9 +160,8 @@ def __init__(
159160 ):
160161 super ().__init__ (component_id , component_property )
161162 self .allow_optional = allow_optional
162- self .allowed_wildcards = (MATCH , ALL , ALLSMALLER )
163163
164- # allowed_wildcards = (MATCH, ALL, ALLSMALLER)
164+ allowed_wildcards = (MATCH , ALL , ALLSMALLER )
165165
166166
167167class ClientsideFunction : # pylint: disable=too-few-public-methods
You can’t perform that action at this time.
0 commit comments