Skip to content

lint #398

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

lint #398

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions gdown/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion gdown/extractall.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
Loading