Skip to content

Commit

Permalink
Add missing init arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffersonBledsoe committed Aug 31, 2021
1 parent d976e40 commit c8075a4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/collective/collectionfilter/portlets/collectionfilter.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ class Assignment(base.Assignment):
narrow_down = False
view_name = None
content_selector = "#content-core"
hide_if_empty = False
hide_if_empty = False,
enable_all_filter_option = True,
# list_scaling = None

def __init__(
Expand All @@ -43,6 +44,7 @@ def __init__(
view_name=None,
content_selector="#content-core",
hide_if_empty=False,
enable_all_filter_option=True,
# list_scaling=None
):
self.header = header
Expand All @@ -56,6 +58,7 @@ def __init__(
self.view_name = view_name
self.content_selector = content_selector
self.hide_if_empty = hide_if_empty
self.enable_all_filter_option = enable_all_filter_option
# self.list_scaling = list_scaling

@property
Expand Down

0 comments on commit c8075a4

Please sign in to comment.