Skip to content

Commit

Permalink
Ignore mypy union-attr issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mwtoews committed Aug 18, 2023
1 parent 0387f2e commit 121d9cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rtree/finder.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def load() -> ctypes.CDLL:
lib_name = "libspatialindex_c.so"

# add path for binary wheel prepared with cibuildwheel/auditwheel
for file in importlib.metadata.files("rtree"):
for file in importlib.metadata.files("rtree"): # type: ignore
if (
file.parent.name == "Rtree.libs"
and file.stem.startswith("libspatialindex")
Expand Down

0 comments on commit 121d9cd

Please sign in to comment.