Skip to content

Commit

Permalink
fix: pass down kwargs to allow using states=true
Browse files Browse the repository at this point in the history
  • Loading branch information
joao-conde committed Mar 23, 2022
1 parent f635493 commit 2125fde
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ripe/order.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ def chat_order(self, number):
contents = self.get(url)
return contents

def chat_lines_order(self, number):
def chat_lines_order(self, number, *args, **kwargs):
url = self.base_url + "orders/%d/chat/lines" % number
contents = self.get(url)
contents = self.get(url, **kwargs)
return contents

def chat_lines_count_order(self, number):
Expand Down

0 comments on commit 2125fde

Please sign in to comment.