Skip to content

Commit

Permalink
added id to KeyError for get and set on Components (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
ned2 authored and chriddyp committed Aug 14, 2017
1 parent b390e73 commit 064c811
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dash/development/base_component.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def _get_set_or_delete(self, id, operation, new_item=None):

# The end of our branch
# If we were in a list, then this exception will get caught
raise KeyError
raise KeyError(id)

# Supply ABC methods for a MutableMapping:
# - __getitem__
Expand Down

0 comments on commit 064c811

Please sign in to comment.