Skip to content

Commit

Permalink
🐛 fixed TypeError
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Patrick Kyle committed Jan 22, 2019
1 parent 29db588 commit 9e6f236
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dash/development/_r_components_generation.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,8 @@ def generate_class_string(name, props, project_shortname, prefix):
# Filter props to remove those we don't want to expose
for item in prop_keys[:]:
if item.endswith('-*') \
or item in r_keywords + ['setProps']:
or item in r_keywords \
or item == 'setProps':
prop_keys.remove(item)

default_argtext += ", ".join(
Expand Down

0 comments on commit 9e6f236

Please sign in to comment.