Skip to content

Commit b81e488

Browse files
_object: the assumed ABI version is possibly None
1 parent dde5d75 commit b81e488

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

abi3audit/_object.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def __init__(self, extractor: extract.SharedObjectExtractor):
3232
self._extractor = extractor
3333
self.path = self._extractor.path
3434

35-
def abi3_version(self, assume_lowest: PyVersion) -> PyVersion | None:
35+
def abi3_version(self, assume_lowest: PyVersion | None) -> PyVersion | None:
3636
# If we're dealing with a shared object that was extracted from a wheel,
3737
# we try and suss out the abi3 version from the wheel's own tags.
3838
if self._extractor.parent is not None:

0 commit comments

Comments
 (0)