Skip to content

Commit

Permalink
rm redundant assignment, re #11578
Browse files Browse the repository at this point in the history
  • Loading branch information
whatisgalen committed Nov 20, 2024
1 parent 9abbbba commit 3efea56
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions arches/app/search/components/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,7 @@ def __init__(self, request=None, user=None):
request_object = (
self.request.GET if self.request.method == "GET" else self.request.POST
)
request_object = request_object.dict()
self.search_request = request_object
self.search_request = request_object.dict()

def get_filter(self, componentname):
if componentname in self.search_filters:
Expand Down

0 comments on commit 3efea56

Please sign in to comment.