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__(
145
145
):
146
146
super ().__init__ (component_id , component_property )
147
147
self .allow_optional = allow_optional
148
- self .allowed_wildcards = (MATCH , ALL , ALLSMALLER )
148
+
149
+ allowed_wildcards = (MATCH , ALL , ALLSMALLER )
149
150
150
151
151
152
class State (DashDependency ): # pylint: disable=too-few-public-methods
@@ -159,9 +160,8 @@ def __init__(
159
160
):
160
161
super ().__init__ (component_id , component_property )
161
162
self .allow_optional = allow_optional
162
- self .allowed_wildcards = (MATCH , ALL , ALLSMALLER )
163
163
164
- # allowed_wildcards = (MATCH, ALL, ALLSMALLER)
164
+ allowed_wildcards = (MATCH , ALL , ALLSMALLER )
165
165
166
166
167
167
class ClientsideFunction : # pylint: disable=too-few-public-methods
You can’t perform that action at this time.
0 commit comments