Skip to content

Commit

Permalink
Line length fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
rmarren1 committed Dec 14, 2018
1 parent eaef497 commit 7912ade
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions dash/development/_py_components_generation.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,12 @@ def __init__(self, {default_argtext}):
self._prop_names = {list_of_valid_keys}
self._type = '{typename}'
self._namespace = '{namespace}'
self._valid_wildcard_attributes = {list_of_valid_wildcard_attr_prefixes}
self._valid_wildcard_attributes = \
{list_of_valid_wildcard_attr_prefixes}
self.available_events = {events}
self.available_properties = {list_of_valid_keys}
self.available_wildcard_properties = {list_of_valid_wildcard_attr_prefixes}
self.available_wildcard_properties = \
{list_of_valid_wildcard_attr_prefixes}
_explicit_args = kwargs.pop('_explicit_args')
_locals = locals()
Expand Down

0 comments on commit 7912ade

Please sign in to comment.