Skip to content

Commit

Permalink
add missing arg
Browse files Browse the repository at this point in the history
  • Loading branch information
hsyyid committed May 3, 2021
1 parent cc48438 commit 2609d19
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def get_version():
readme = f.read()

setup(name='tap-quickbooks',
version='1.4.33',
version='1.4.34',
description='Singer.io tap for extracting data from the Quickbooks API',
author='hotglue',
url='http://hotglue.xyz/',
Expand Down
2 changes: 1 addition & 1 deletion tap_quickbooks/quickbooks/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ def _build_query_string(self, catalog_entry, start_date, end_date=None, order_by
else:
return query

def query(self, catalog_entry, state):
def query(self, catalog_entry, state, state_passed):
if self.api_type == REST_API_TYPE:
rest = Rest(self)
return rest.query(catalog_entry, state)
Expand Down

0 comments on commit 2609d19

Please sign in to comment.