PythonImport represents an import in a Python file.
| 27 | |
| 28 | // PythonImport represents an import in a Python file. |
| 29 | type PythonImport interface { |
| 30 | Path() string |
| 31 | IsTypeOnly() bool |
| 32 | } |
| 33 | |
| 34 | // ExternalImport represents an external module import. |
| 35 | type ExternalImport struct { |
no outgoing calls
no test coverage detected