From ebeaced0f474e7be37d17e35d206efe2358adfff Mon Sep 17 00:00:00 2001 From: Michael Hohn Date: Mon, 17 Jul 2023 10:30:35 -0700 Subject: [PATCH] Remove automationDetails from CSV output This reverses commit 68b43e05 to keep the CSV compatible with prior output --- sarif_cli/columns.py | 2 +- sarif_cli/scan_tables.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sarif_cli/columns.py b/sarif_cli/columns.py index 2bbaa14..3e37266 100644 --- a/sarif_cli/columns.py +++ b/sarif_cli/columns.py @@ -47,7 +47,7 @@ columns = { "repo_url" , "primary_language" , "languages_analyzed", - "automationDetails", + # "automationDetails", ], "codeflows" : [ "codeflow_id", diff --git a/sarif_cli/scan_tables.py b/sarif_cli/scan_tables.py index faba273..e5c382b 100644 --- a/sarif_cli/scan_tables.py +++ b/sarif_cli/scan_tables.py @@ -70,7 +70,7 @@ class ScanTablesTypes: "repo_url" : pd.StringDtype(), "primary_language" : pd.StringDtype(), "languages_analyzed" : pd.StringDtype(), - "automationDetails" : pd.StringDtype(), + # "automationDetails" : pd.StringDtype(), } #