Skip to content

Commit

Permalink
create_object_navlist_iql method - changed parameter default values (#…
Browse files Browse the repository at this point in the history
…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.
  • Loading branch information
HowNOT2Code authored Feb 3, 2024
1 parent 2e232c0 commit d57d139
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions atlassian/insight.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
):
Expand Down

0 comments on commit d57d139

Please sign in to comment.