From 3ae88575a62605be033186796ec60d6baabdef70 Mon Sep 17 00:00:00 2001 From: Arjit Seth Date: Tue, 9 Jun 2020 22:06:06 +0800 Subject: [PATCH] Gzip import in pyOFM.py (#9) Gzip is not imported, which throws an error when `gzip.open()` is called. --- python/pyOFM.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/pyOFM.py b/python/pyOFM.py index 4aea996..27d7105 100755 --- a/python/pyOFM.py +++ b/python/pyOFM.py @@ -13,6 +13,7 @@ import shutil import numpy as np from mpi4py import MPI +import gzip from .pyOFMesh import pyOFMesh try: from collections import OrderedDict