Skip to content

Commit 873394c

Browse files
committed
adjustments for feedback
1 parent 54d3aa7 commit 873394c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dash/dependencies.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

151152
class 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

167167
class ClientsideFunction: # pylint: disable=too-few-public-methods

0 commit comments

Comments
 (0)