Skip to content

Commit ac59a95

Browse files
committed
lint
1 parent cbaadf6 commit ac59a95

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

micropip/transaction.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,11 +91,11 @@ async def add_requirement(self, req: str | Requirement) -> None:
9191
except InvalidRequirement:
9292
if not urlparse(req).path.endswith(".whl"):
9393
raise
94-
94+
9595
# custom download location
9696
return await self.add_requirement_from_url(req)
97-
98-
async def add_requirement_from_url(self, req: str) -> WheelInfo:
97+
98+
async def add_requirement_from_url(self, req: str) -> None:
9999
wheel = WheelInfo.from_url(req)
100100
check_compatible(wheel.filename)
101101
return await self.add_wheel(wheel, extras=set(), specifier="")

0 commit comments

Comments
 (0)