Skip to content

Commit

Permalink
Simplify code base
Browse files Browse the repository at this point in the history
  • Loading branch information
kmmbvnr committed Sep 30, 2014
1 parent 9bf0354 commit be7c99f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions viewflow/flow/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,8 @@ def _outgoing(self):


class DetailsViewMixin(object):
def __init__(self, *args, details_view=None, **kwargs):
self._details_view = details_view
def __init__(self, *args, **kwargs):
self._details_view = kwargs.pop('details_view', None)
super(DetailsViewMixin, self).__init__(*args, **kwargs)

@property
Expand Down

0 comments on commit be7c99f

Please sign in to comment.