Skip to content

Commit

Permalink
Fixes command line param
Browse files Browse the repository at this point in the history
  • Loading branch information
catusphan committed Dec 18, 2024
1 parent ea021ec commit 279afcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/dict_summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def main():
parser.add_argument("--outfile", type=str, nargs="?", default="dict_summary.md", help="The output report file name (default is 'dict_summary.md').")
parser.add_argument("--extensions", type=str, nargs="?", default=None, help="The extensions that need included in the report. None means all.")
parser.add_argument("--columns", type=str, nargs="?", default=None, help="The columns that will be kept (Other than the download links).")
parser.add_argument("--read-only", choices=["yes", "no"], default="no", required=False, help="Read data or create it.")
parser.add_argument("--read_only", choices=["yes", "no"], default="no", required=False, help="Read data or create it.")

args = parser.parse_args()

Expand Down

0 comments on commit 279afcd

Please sign in to comment.