Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nanorepublica committed Jun 9, 2017
1 parent efe6391 commit 5c0fd32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions duedil/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def _search(self, endpoint, result_klass, *args, **kwargs):
return self.search_list_class(results, result_klass, self)

@staticmethod
def _build_search_string(self, *args, **kwargs):
def _build_search_string(*args, **kwargs):
data = {}
try:
data['q'] = kwargs['query']
Expand Down Expand Up @@ -181,7 +181,7 @@ class ProClient(Client):
search_list_class = ProSearchResourceList

@staticmethod
def _build_search_string(self, term_filters, range_filters,
def _build_search_string(term_filters, range_filters,
order_by=None, limit=None, offset=None,
**kwargs):
data = {}
Expand Down

0 comments on commit 5c0fd32

Please sign in to comment.