Skip to content

Commit 7912ade

Browse files
committed
Line length fix.
1 parent eaef497 commit 7912ade

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

dash/development/_py_components_generation.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,12 @@ def __init__(self, {default_argtext}):
5050
self._prop_names = {list_of_valid_keys}
5151
self._type = '{typename}'
5252
self._namespace = '{namespace}'
53-
self._valid_wildcard_attributes = {list_of_valid_wildcard_attr_prefixes}
53+
self._valid_wildcard_attributes = \
54+
{list_of_valid_wildcard_attr_prefixes}
5455
self.available_events = {events}
5556
self.available_properties = {list_of_valid_keys}
56-
self.available_wildcard_properties = {list_of_valid_wildcard_attr_prefixes}
57+
self.available_wildcard_properties = \
58+
{list_of_valid_wildcard_attr_prefixes}
5759
5860
_explicit_args = kwargs.pop('_explicit_args')
5961
_locals = locals()

0 commit comments

Comments
 (0)