diff options
author | Alexander Kabui | 2021-10-05 17:34:59 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-10-25 14:16:21 +0300 |
commit | fd8650ca108cf61cd16b264e09568df9ad7bf428 (patch) | |
tree | accaaa4273aee797f1c33eda185a4d4773580bb9 | |
parent | c6bce638cfac9df0a4f3f380971fde65b1947ad7 (diff) | |
download | genenetwork3-fd8650ca108cf61cd16b264e09568df9ad7bf428.tar.gz |
pep8 formatting,pylint fixes
-rw-r--r-- | gn3/computations/wgcna.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gn3/computations/wgcna.py b/gn3/computations/wgcna.py index 94e2a40..d1d6d39 100644 --- a/gn3/computations/wgcna.py +++ b/gn3/computations/wgcna.py @@ -37,7 +37,7 @@ def stream_cmd_output(socket, cmd: str): socket.emit("output", {"data": line}) - # close above make sure the process is closed + # wait for process to complete code socket.emit("output", {"data": "parsing the output results"}) @@ -48,7 +48,7 @@ def process_image(image_loc: str) -> bytes: try: with open(image_loc, "rb") as image_file: return base64.b64encode(image_file.read()) - except FileNotFoundError as e: + except FileNotFoundError: return b"" |