Hello, this there a setting to have QRadar 7.5.0 use Python3.x during a custom action? I am assuming it is using Python2 and I would much rather write in version 3.

[@qradar01 custom_action_scripts]# ls -a /usr/bin/python*
/usr/bin/python /usr/bin/python2 /usr/bin/python2.7 /usr/bin/python3 /usr/bin/python3.6 /usr/bin/python3.6m
[@qradar01 custom_action_scripts]# python3 customaction_2.script QRadar
Hello, QRadar.
[@qradar01 custom_action_scripts]# cat customaction_2.script
#!/usr/bin/python3.6
import sys
import requests
import json
name = sys.argv[1]
message = f"Hello, {name}."
print(message)
[@qradar01 custom_action_scripts]# python2 customaction_2.script QRadar
File "customaction_2.script", line 8
message = f"Hello, {name}."
^
SyntaxError: invalid syntax
[root@qradar01 custom_action_scripts]# python customaction_2.script QRadar
File "customaction_2.script", line 8
message = f"Hello, {name}."
^
SyntaxError: invalid syntax
Thanks!
------------------------------
Tom L
------------------------------