Skip to content

Commit 928acff

Browse files
authored
modify the args to fix set error (#133)
1 parent 33ba398 commit 928acff

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

netsuitesdk/api/employees.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,7 @@ class Employees(ApiBase):
1212
def __init__(self, ns_client):
1313
ApiBase.__init__(self, ns_client=ns_client, type_name='Employee')
1414

15-
def get_all_generator(self, is_inactive=False, page_size=50, last_modified_date_query={
16-
'search_value',
17-
'operator',
18-
}):
15+
def get_all_generator(self, is_inactive=False, page_size=50, last_modified_date_query={}):
1916
# Get Only Employee Items using SearchBooleanField
2017
record_type_search_field = self.ns_client.SearchBooleanField(searchValue=is_inactive)
2118

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name='netsuitesdk',
8-
version='2.21.3',
8+
version='2.21.4',
99
author='Siva Narayanan',
1010
author_email='[email protected]',
1111
description='Python SDK for accessing the NetSuite SOAP webservice',

0 commit comments

Comments
 (0)