From c925e2f1faeaf1709ed5a5eea585e6e630947dc2 Mon Sep 17 00:00:00 2001 From: wqy Date: Sat, 21 Oct 2023 10:21:44 +0800 Subject: [PATCH] Remove ''' --- epanet/epanet.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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()