From d57d139ca6b51ce157a52a6076b447a58146d4df Mon Sep 17 00:00:00 2001 From: HowNOT2Code <58376416+HowNOT2Code@users.noreply.github.com> Date: Sat, 3 Feb 2024 14:08:50 +0100 Subject: [PATCH] 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. --- atlassian/insight.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/atlassian/insight.py b/atlassian/insight.py index 03b25a452..23aa693b6 100644 --- a/atlassian/insight.py +++ b/atlassian/insight.py @@ -411,11 +411,11 @@ def create_object_navlist_iql( iql, object_type_id, results_per_page, - order_by_type_attr_id, - object_id, - object_schema_id, - include_attributes, - attributes_to_display, + order_by_type_attr_id=None, + object_id=None, + object_schema_id=None, + include_attributes=None, + attributes_to_display=None, page=1, asc=0, ):