1
0
Fork 0
forked from github/pelican

Code changes for more ruff checks

This commit is contained in:
boxydog 2024-05-30 10:33:50 -05:00
commit 9d30c5608a
5 changed files with 19 additions and 21 deletions

View file

@ -32,19 +32,18 @@ def parse_arguments():
"--cert",
default="./cert.pem",
nargs="?",
help="Path to certificate file. " + "Relative to current directory",
help="Path to certificate file. Relative to current directory",
)
parser.add_argument(
"--key",
default="./key.pem",
nargs="?",
help="Path to certificate key file. " + "Relative to current directory",
help="Path to certificate key file. Relative to current directory",
)
parser.add_argument(
"--path",
default=".",
help="Path to pelican source directory to serve. "
+ "Relative to current directory",
help="Path to pelican source directory to serve. Relative to current directory",
)
return parser.parse_args()