Skip to content

Commit

Permalink
modify the args to fix set error
Browse files Browse the repository at this point in the history
  • Loading branch information
Hrishabh17 committed Jul 31, 2024
1 parent 33ba398 commit 1ad103d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions netsuitesdk/api/employees.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,7 @@ class Employees(ApiBase):
def __init__(self, ns_client):
ApiBase.__init__(self, ns_client=ns_client, type_name='Employee')

def get_all_generator(self, is_inactive=False, page_size=50, last_modified_date_query={
'search_value',
'operator',
}):
def get_all_generator(self, is_inactive=False, page_size=50, last_modified_date_query={}):
# Get Only Employee Items using SearchBooleanField
record_type_search_field = self.ns_client.SearchBooleanField(searchValue=is_inactive)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name='netsuitesdk',
version='2.21.3',
version='2.21.4',
author='Siva Narayanan',
author_email='[email protected]',
description='Python SDK for accessing the NetSuite SOAP webservice',
Expand Down

0 comments on commit 1ad103d

Please sign in to comment.