From d159011cfdb9a1d6e855910005fba366412ee838 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Alet?= Date: Wed, 23 Mar 2022 09:58:42 +1100 Subject: [PATCH] feat. Adds the capability to read all or parts of the command line arguments from a file using the syntax. Closes #74. --- yamlfixer/__main__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/yamlfixer/__main__.py b/yamlfixer/__main__.py index 6319b66..9cc97a8 100755 --- a/yamlfixer/__main__.py +++ b/yamlfixer/__main__.py @@ -48,6 +48,7 @@ def run(): cmdline = argparse.ArgumentParser(description="Fix formatting problems in YAML documents. " "If no file is specified, then reads input from `stdin`.", epilog=f"{__copyright__}\n{GPLBLURB}", + fromfile_prefix_chars="@", formatter_class=argparse.RawDescriptionHelpFormatter) cmdline.add_argument("-v", "--version", action="version",