From 3df0439aae4af41d9de082e50bb7bc9213849b47 Mon Sep 17 00:00:00 2001 From: Philipp Helo Rehs Date: Fri, 27 Oct 2023 19:18:30 +0200 Subject: [PATCH] Fix error when using from cli (#29) --- ocspchecker/__main__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ocspchecker/__main__.py b/ocspchecker/__main__.py index 3828ac7..ae6a960 100644 --- a/ocspchecker/__main__.py +++ b/ocspchecker/__main__.py @@ -25,9 +25,9 @@ "--port", "-p", metavar="port", - type=str, + type=int, required=False, - default="443", + default=443, help="The port to test (default is 443)", )