From 10e8c85332c25fde2f2472f1b6a7cc3f1f1a4f04 Mon Sep 17 00:00:00 2001 From: Mark Harfouche Date: Sat, 19 Apr 2025 16:14:26 -0400 Subject: [PATCH] lint other files --- gdown/__main__.py | 3 +-- gdown/extractall.py | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/gdown/__main__.py b/gdown/__main__.py index 1220bfcb..fa559b1e 100644 --- a/gdown/__main__.py +++ b/gdown/__main__.py @@ -62,8 +62,7 @@ def main(): "-O", "--output", help=( - f'output file name/path; end with "{os.path.sep}"' - "to create a new directory" + f'output file name/path; end with "{os.path.sep}"to create a new directory' ), ) parser.add_argument( diff --git a/gdown/extractall.py b/gdown/extractall.py index 6846026a..d53b1022 100644 --- a/gdown/extractall.py +++ b/gdown/extractall.py @@ -27,7 +27,7 @@ def extractall(path, to=None): opener, mode = tarfile.open, "r:bz2" else: raise ValueError( - "Could not extract '%s' as no appropriate " "extractor is found" % path + "Could not extract '%s' as no appropriate extractor is found" % path ) def namelist(f):