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 b9df6f9 commit 7c26e45Copy full SHA for 7c26e45
1 file changed
src/python_inspector/package_data.py
@@ -122,6 +122,8 @@ async def get_pypi_data_from_purl(
122
123
124
def choose_single_wheel(wheel_urls: List[str]) -> Optional[str]:
125
+ # fix Issue 240 - TypeError: '<' not supported between instances of 'str' and 'NoneType'
126
+ wheel_urls = [url for url in wheel_urls if url is not None]
127
"""
128
Sort wheel urls descendingly and return the first one
129
0 commit comments