From 81ed3fa12b1f2d7a27b093b044d861e56eced91a Mon Sep 17 00:00:00 2001 From: Daniel Rojas Date: Thu, 9 May 2024 14:10:19 +0200 Subject: [PATCH] Remove references for unsupported output formats Remove the references in the CLI help, but keep the placeholders elsewhere in the code as a TODO --- src/wireviz/wv_cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wireviz/wv_cli.py b/src/wireviz/wv_cli.py index c6f108e..afb0249 100644 --- a/src/wireviz/wv_cli.py +++ b/src/wireviz/wv_cli.py @@ -14,11 +14,11 @@ from wireviz import APP_NAME, __version__ from wireviz.wv_helper import open_file_read format_codes = { - "c": "csv", + # "c": "csv", "g": "gv", "h": "html", "p": "png", - "P": "pdf", + # "P": "pdf", "s": "svg", "t": "tsv", }