diff --git a/epanet/epanet.py b/epanet/epanet.py index 51431c4..7cf89e1 100644 --- a/epanet/epanet.py +++ b/epanet/epanet.py @@ -8,7 +8,7 @@ sys.path.append("..") from api import project from api import inp_out -''' + def _verify_platform(): _platform = platform.system() if _platform != "Windows": @@ -225,7 +225,7 @@ def _dump_output(path: str) -> dict[str, Any]: def dump_output(path: str) -> str: data = _dump_output(path) return json.dumps(data) -''' + def dump_report(path: str) -> str: return open(path, 'r').read()