Skip to content

Commit

Permalink
Fix per operation pythonic override. Closes #1078.
Browse files Browse the repository at this point in the history
  • Loading branch information
jshcodes committed Nov 20, 2023
1 parent 15d6e45 commit 6038cba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/falconpy/_util/_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,7 @@ def process_service_request(calling_object, # pylint: disable=R0914 # (19/15)
"body_required": kwargs.get("body_required", None),
"expand_result": expand_result,
"container": container,
"pythonic": calling_object.pythonic,
"pythonic": passed_keywords.get("pythonic") if passed_keywords.get("pythonic", None) is not None else calling_object.pythonic,
"perform": True
}

Expand Down

0 comments on commit 6038cba

Please sign in to comment.