I am creating a cli with docopt and have the following issue (I'll bring in examples from their naval_fate example cli)
naval-fate --version
or naval-fate -v
will return the cli version but when try doing let's say naval-fate ship -v
for a different purpose, it automatically returns the same result as the first two commands.
Is there a way to prevent docopt from doing this?
Thanks