We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53a82b8 commit 4d96e0dCopy full SHA for 4d96e0d
dash/development/base_component.py
@@ -98,8 +98,8 @@ def __init__(self, **kwargs):
98
if k != "children" and isinstance(v, Component):
99
raise TypeError(
100
"Component detected as a prop other than `children`\n" +
101
- "Did you forget to wrap multiple `children` in an array?" +
102
- "prop {} has value {}\n".format(k, repr(v))
+ "Did you forget to wrap multiple `children` in an array?\n" +
+ "Prop {} has value {}\n".format(k, repr(v))
103
)
104
105
setattr(self, k, v)
0 commit comments