Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jan 29, 2024
1 parent 1811291 commit d6e8ca2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 4 additions & 2 deletions micropip/_compat_not_in_pyodide.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import re
from pathlib import Path
from typing import IO, TYPE_CHECKING, Any, Literal
from typing import IO, TYPE_CHECKING, Any

if TYPE_CHECKING:
from .wheelinfo import PackageData
Expand Down Expand Up @@ -34,7 +34,9 @@ async def fetch_string_and_headers(
return response.read().decode(), headers


async def loadDynlibsFromPackage(pkg_metadata: "PackageData", dynlibs: list[str]) -> None:
async def loadDynlibsFromPackage(
pkg_metadata: "PackageData", dynlibs: list[str]
) -> None:
pass


Expand Down
4 changes: 1 addition & 3 deletions tests/test_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -389,9 +389,7 @@ async def _mock_fetch_bytes(url, *args):
assert "fake_pkg_micropip_test-1.0.0-py2.py3-none-any.whl" in _wheel_url


def test_install_pkg_with_sharedlib_deps(
selenium_standalone_micropip, wheel_catalog
):
def test_install_pkg_with_sharedlib_deps(selenium_standalone_micropip, wheel_catalog):
"""
Test if micropip can locate shared libraries in the wheel file correctly.
shapely requires libgeos and it is bundled inside the shapely wheel.
Expand Down

0 comments on commit d6e8ca2

Please sign in to comment.