Skip to content

Commit

Permalink
Shared changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ideoforms committed Mar 10, 2023
1 parent e3e64e6 commit a0e19a2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions aux/scripts/pull-descriptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

def main(args):
class_data = parse_class_data(args)
if args.generate_index:
if args.generate_markdown:
generate_index(class_data)
else:
for file_dict in class_data:
Expand Down Expand Up @@ -114,8 +114,8 @@ def parse_class_data(args):
if __name__ == "__main__":
# Look for arguments to output as markdown
parser = argparse.ArgumentParser()
parser.add_argument("-m", "--markdown", action="store_true")
parser.add_argument("--generate-index", action="store_true")
parser.add_argument("--generate-markdown", action="store_true", help="Generate and write markdown files per pattern")
parser.add_argument("--generate-readme", action="store_true", help="Generate and output text for README")
args = parser.parse_args()

main(args)

0 comments on commit a0e19a2

Please sign in to comment.