From 463fc67214e3ce75137c16146f625995c99373aa Mon Sep 17 00:00:00 2001 From: Radhakrishna Sanka Date: Fri, 25 Aug 2023 15:09:52 +0000 Subject: [PATCH] Fixed issue where the layers writer does not have a new line input. --- pymint/mintwriter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pymint/mintwriter.py b/pymint/mintwriter.py index 1e720af..7581b8b 100644 --- a/pymint/mintwriter.py +++ b/pymint/mintwriter.py @@ -93,7 +93,7 @@ def to_layer_MINT(layer: Layer, content: str) -> str: Returns: str: Returns the MINT string fragment """ - ret = "LAYER {} \n\n{} \n\nEND LAYER".format(layer.layer_type, content) + ret = "LAYER {}\n\n{}\n\nEND LAYER\n\n".format(layer.layer_type, content) return ret