refactor: combine open launch args (#364)
Combine the `--open` and `-o` launch arguments into a single argument option.
This commit is contained in:
parent
ec960f2372
commit
3fcf6022b9
1 changed files with 1 additions and 6 deletions
|
|
@ -17,14 +17,9 @@ def main():
|
|||
|
||||
# Parse arguments.
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument(
|
||||
"--open",
|
||||
dest="open",
|
||||
type=str,
|
||||
help="Path to a TagStudio Library folder to open on start.",
|
||||
)
|
||||
parser.add_argument(
|
||||
"-o",
|
||||
"--open",
|
||||
dest="open",
|
||||
type=str,
|
||||
help="Path to a TagStudio Library folder to open on start.",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue