From c979fca9fff9f80f38d1c165e9d93e1aff7a9f9c Mon Sep 17 00:00:00 2001 From: Gold856 <117957790+Gold856@users.noreply.github.com> Date: Tue, 28 Nov 2023 23:46:15 -0500 Subject: [PATCH] Remove line length option --- wpiformat/wpiformat/cmakeformat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wpiformat/wpiformat/cmakeformat.py b/wpiformat/wpiformat/cmakeformat.py index 698ee1b..fd37ce4 100644 --- a/wpiformat/wpiformat/cmakeformat.py +++ b/wpiformat/wpiformat/cmakeformat.py @@ -14,7 +14,7 @@ def should_process_file(config_file, name): @staticmethod def run_batch(config_file, names): try: - args = [sys.executable, "-m", "gersemi", "-l", "150", "-i", "."] + args = [sys.executable, "-m", "gersemi", "-i", "."] returncode = subprocess.run(args + names).returncode except FileNotFoundError: print("Error: gersemi not found in PATH. Is it installed?", file=sys.stderr)