8 lines
241 B
Python
8 lines
241 B
Python
from typing import Any
|
|
|
|
from app.algorithms.valve_isolation import valve_isolation_analysis
|
|
|
|
|
|
def analyze_valve_isolation(network: str, accident_element: str) -> dict[str, Any]:
|
|
return valve_isolation_analysis(network, accident_element)
|