fix(exporter): Default to toml as default format
continuous-integration/drone/pr Build is failing Details
continuous-integration/drone/push Build is passing Details

pull/12/head
Georg Krause 2023-07-10 10:52:33 +02:00
parent 569cff0957
commit 941c9948d9
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ def cli():
parser.add_argument('-o', '--output', help="Filename where to export the blocklist")
parser.add_argument('-v', '--verbose', action='store_true')
parser.add_argument('-n', '--no-delete', action='store_true', help="Do not delete existing blocks")
parser.add_argument('--format', help="Export format: toml|markdown|csv|json")
parser.add_argument('--format', default="toml", type=str, help="Export format: toml|markdown|csv|json")
parser.add_argument('--private', action='store_true', help="When the flag is set, private comment will also be "
"exported.")
args = parser.parse_args()