diff --git a/src/falconpy/_util/_functions.py b/src/falconpy/_util/_functions.py index 43016515e..41e2bbe78 100644 --- a/src/falconpy/_util/_functions.py +++ b/src/falconpy/_util/_functions.py @@ -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 }