Make command line consistent, fix incorrect documentation.

This commit is contained in:
Cyber MacGeddon 2024-11-08 18:11:07 +00:00
parent f97856245c
commit 09729096b5
7 changed files with 32 additions and 29 deletions

View file

@ -1,7 +1,8 @@
#!/usr/bin/env python3
"""
Connects to the graph query service and dumps all graph edges.
Connects to the graph query service and dumps all graph edges in Turtle
format.
"""
import argparse
@ -50,7 +51,7 @@ def show_graph(pulsar):
def main():
parser = argparse.ArgumentParser(
prog='graph-show',
prog='tg-graph-to-turtle',
description=__doc__,
)