Skip to content

Commit d57d139

Browse files
authored
create_object_navlist_iql method - changed parameter default values (#1314)
Checks are done for some parameters if they are None but no default parameterization is done making them mandatory instead of optional. There are queries not requiring these parameters.
1 parent 2e232c0 commit d57d139

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

atlassian/insight.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -411,11 +411,11 @@ def create_object_navlist_iql(
411411
iql,
412412
object_type_id,
413413
results_per_page,
414-
order_by_type_attr_id,
415-
object_id,
416-
object_schema_id,
417-
include_attributes,
418-
attributes_to_display,
414+
order_by_type_attr_id=None,
415+
object_id=None,
416+
object_schema_id=None,
417+
include_attributes=None,
418+
attributes_to_display=None,
419419
page=1,
420420
asc=0,
421421
):

0 commit comments

Comments
 (0)