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