Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
snyaggarwal committed Nov 29, 2024
1 parent f284536 commit e592f71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/common/mixins.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def head(self, request, **kwargs): # pylint: disable=unused-argument
res['num_found'] = get(self, 'total_count') or queryset.count()
return res

def list(self, request, *args, **kwargs): # pylint:disable=too-many-locals
def list(self, request, *args, **kwargs): # pylint:disable=too-many-locals,too-many-branches
query_params = request.query_params.dict()
is_csv = query_params.get('csv', False)
search_string = query_params.get('type', None)
Expand Down

0 comments on commit e592f71

Please sign in to comment.