summaryrefslogtreecommitdiffstats
path: root/openbb_terminal/core/integration_tests/integration_test_coverage.py
diff options
context:
space:
mode:
Diffstat (limited to 'openbb_terminal/core/integration_tests/integration_test_coverage.py')
-rw-r--r--openbb_terminal/core/integration_tests/integration_test_coverage.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/openbb_terminal/core/integration_tests/integration_test_coverage.py b/openbb_terminal/core/integration_tests/integration_test_coverage.py
index 4664ee6d24b..54470741743 100644
--- a/openbb_terminal/core/integration_tests/integration_test_coverage.py
+++ b/openbb_terminal/core/integration_tests/integration_test_coverage.py
@@ -513,9 +513,11 @@ def display_uncovered_commands(
df = pd.DataFrame()
df["Command"] = missing_commands
df["Missing params"] = [ # pylint: disable=unsupported-assignment-operation
- "all params missing"
- if command in untested_commands
- else missing_params[command]
+ (
+ "all params missing"
+ if command in untested_commands
+ else missing_params[command]
+ )
for command in missing_commands
]
df["Coverage"] = [