Skip to content

Commit

Permalink
Fixed typo in arguments.py
Browse files Browse the repository at this point in the history
  • Loading branch information
leoreinmann committed Apr 8, 2023
1 parent 7ad5b8b commit 6663606
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified __pycache__/arguments.cpython-310.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion arguments.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import argparse

parser = argparse.ArgumentParser(description='App scans through a directory and stores metadata of .mkv files in MySQL database')
parser = argparse.ArgumentParser(description='App scans through a directory and stores metadata of .mkv files into a MySQL database')
parser.add_argument('database_name', type=str, help='the name of the database')
parser.add_argument('database_user', type=str, help='the user to connect to the database')
parser.add_argument('database_password', type=str, help='the password to connect to the database')
Expand Down

0 comments on commit 6663606

Please sign in to comment.