(path: string)
| 695 | relations: (m.relations || []).map((r: any) => `${r.name}: ${r.target}`), |
| 696 | orm: "sqlalchemy" as const, |
| 697 | confidence: "ast" as const, |
| 698 | })); |
| 699 | } |
| 700 | |
| 701 | /** |
| 702 | * Check if Python 3 is available on this system. |
| 703 | */ |
| 704 | export async function isPythonAvailable(): Promise<boolean> { |
| 705 | return findPython(); |
| 706 | } |
| 707 |
no outgoing calls
no test coverage detected