From ec5229cf6932132ac7b5268bc337afac771f2eb1 Mon Sep 17 00:00:00 2001 From: bullmoose20 Date: Fri, 1 Dec 2023 13:07:47 -0500 Subject: [PATCH] Update util.py to minimize word wrap on config.yml rewrite --- modules/util.py | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/util.py b/modules/util.py index eb620c34..05a084ee 100644 --- a/modules/util.py +++ b/modules/util.py @@ -985,6 +985,7 @@ class YAML: self.path = path self.input_data = input_data self.yaml = ruamel.yaml.YAML() + self.yaml.width = 100000 self.yaml.indent(mapping=2, sequence=2) try: if input_data: