Skip to content

Commit

Permalink
Remove line length option
Browse files Browse the repository at this point in the history
  • Loading branch information
Gold856 committed Nov 29, 2023
1 parent 28fc72a commit c979fca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wpiformat/wpiformat/cmakeformat.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit c979fca

Please sign in to comment.