Skip to content
Closed
Prev Previous commit
Next Next commit
The relative import is not valid
We get the following error otherwise:

```
ImportError: attempted relative import with no known parent package
```
  • Loading branch information
humitos committed Apr 25, 2023
commit c6306332b40155c6ae88e40da1a7eb6342be45fd
2 changes: 1 addition & 1 deletion Lib/platform.py
Original file line number Diff line number Diff line change
Expand Up @@ -1376,7 +1376,7 @@ def _get_musl_version(executable):
Dynamic Program Loader
"""

from ._elffile import ELFFile
from _elffile import ELFFile
import subprocess

try:
Expand Down