diff options
-rw-r--r-- | src/argaze/utils/UtilsFeatures.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/argaze/utils/UtilsFeatures.py b/src/argaze/utils/UtilsFeatures.py index ce92e35..cac186a 100644 --- a/src/argaze/utils/UtilsFeatures.py +++ b/src/argaze/utils/UtilsFeatures.py @@ -254,6 +254,10 @@ class FileWriter(DataFeatures.PipelineStepObject): Tuple elements are converted into quoted strings separated by separator string. """ + if self.__file.closed: + + return + # Format list or tuple element into quoted strings if not isinstance(data, str): |