pyegeria 5.4.0.dev7__py3-none-any.whl → 5.4.0.dev8__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -55,9 +55,9 @@ EGERIA_OUTBOX_PATH = os.environ.get("EGERIA_OUTBOX_PATH", "md_processing/dr_eger
55
55
 
56
56
 
57
57
  @click.command("process_markdown_file", help="Process a markdown file and return the output as a string.")
58
- @click.option("--file-path", help="File path to markdown file", default="glossary_test1.md", required=True,
58
+ @click.option("--input-file", help="Markdown file to process.", default="dr_egeria_intro_part1.md", required=True,
59
59
  prompt=False)
60
- @click.option("--directive", default="display", help="How to process the file",
60
+ @click.option("--directive", default="process", help="How to process the file",
61
61
  type=click.Choice(["display", "validate", "process"], case_sensitive=False), prompt=False, )
62
62
  @click.option("--server", default=EGERIA_VIEW_SERVER, help="Egeria view server to use.")
63
63
  @click.option("--url", default=EGERIA_VIEW_SERVER_URL, help="URL of Egeria platform to connect to")