summaryrefslogtreecommitdiffstats
path: root/openbb_terminal/dashboards/dashboards_controller.py
diff options
context:
space:
mode:
Diffstat (limited to 'openbb_terminal/dashboards/dashboards_controller.py')
-rw-r--r--openbb_terminal/dashboards/dashboards_controller.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbb_terminal/dashboards/dashboards_controller.py b/openbb_terminal/dashboards/dashboards_controller.py
index 4c350ac65d7..7a2e5748cc7 100644
--- a/openbb_terminal/dashboards/dashboards_controller.py
+++ b/openbb_terminal/dashboards/dashboards_controller.py
@@ -4,7 +4,7 @@ __docformat__ = "numpy"
import argparse
import logging
import os
-import subprocess
+import subprocess # nosec
from typing import List
from prompt_toolkit.completion import NestedCompleter
@@ -150,7 +150,7 @@ def create_call(other_args: List[str], name: str, filename: str = None) -> None:
f"{cmd} {file} {args}",
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
- shell=True,
+ shell=True, # nosec
)
else:
console.print(f"Type: {cmd} {file}\ninto a terminal to run.")