Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6937a9b commit 1316418Copy full SHA for 1316418
1 file changed
scripts/stubsabot.py
@@ -204,7 +204,7 @@ async def with_extracted_archive(
204
with zipfile.ZipFile(body) as zf:
205
return handler(zf)
206
elif packagetype == "sdist":
207
- # sdist defaults to `.tar.gz` on Lunix and to `.zip` on Windows:
+ # sdist defaults to `.tar.gz` on Linux and to `.zip` on Windows:
208
# https://docs.python.org/3.11/distutils/sourcedist.html
209
if release_to_download.filename.endswith(".tar.gz"):
210
with tarfile.open(fileobj=body, mode="r:gz") as zf:
0 commit comments