Skip to content

Commit

Permalink
Merge pull request #125 from DefiDebauchery/patch-1
Browse files Browse the repository at this point in the history
Add kwargs to Invoices
  • Loading branch information
martyzz1 committed Nov 28, 2022
2 parents e8d5dd4 + 93e84a1 commit e1f586f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion heroku3/api.py
Expand Up @@ -396,7 +396,7 @@ def keys(self, **kwargs):
return self._get_resources(("account/keys"), Key, map=SSHKeyListResource, **kwargs)

def invoices(self, **kwargs):
return self._get_resources(("account/invoices"), Invoice)
return self._get_resources(("account/invoices"), Invoice, **kwargs)

def labs(self, **kwargs):
return self.features(**kwargs)
Expand Down

0 comments on commit e1f586f

Please sign in to comment.