Skip to content

Commit

Permalink
removed fatfinger error :|
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver Kaiser committed Mar 19, 2020
1 parent 353d8c0 commit 9d8b290
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fireREST/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ def create_object(self, object_type: str, data: Dict):
url = self._url('config', request)
return self._post(url, data)

def get_objects(self, object_type: str, expanded=API_EXPANSION_MODE, limit=API_PAGING_LIMIT, limit=API_PAGING_LIMIT):
def get_objects(self, object_type: str, expanded=API_EXPANSION_MODE, limit=API_PAGING_LIMIT):
request = f'/object/{object_type}'
url = self._url('config', request)
params = {
Expand Down

0 comments on commit 9d8b290

Please sign in to comment.