Skip to content

Commit

Permalink
Add help-string
Browse files Browse the repository at this point in the history
  • Loading branch information
MrCurtis committed Feb 1, 2024
1 parent 5c9efda commit 47451b8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/fk_graph/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@ def _parse_args():
parser.add_argument("--connection-string")
parser.add_argument("--table", required=True)
parser.add_argument("--primary-key", required=True)
parser.add_argument("--only-tables", type=_to_list)
parser.add_argument(
"--only-tables",
type=_to_list,
help="A list-like JSON string of tables to include.",
)
args = parser.parse_args()
if (
(not args.demo and args.connection_string is None)
Expand Down

0 comments on commit 47451b8

Please sign in to comment.