We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd7621f commit 1e62807Copy full SHA for 1e62807
1 file changed
integrate/__main__.py
@@ -5,7 +5,12 @@
5
parser = ArgumentParser(prog="integrate", usage="%(prog)s [options]",
6
description="Run python codes for handling csv data using the commands and options")
7
8
-parser.add_argument("--user_id", type=int, help="enter the user's id for displaying user details")
+parser.add_argument(
9
+ "-id",
10
+ "--user_id",
11
+ type=int,
12
+ help="enter the user's id for displaying user details"
13
+)
14
15
args = parser.parse_args()
16
0 commit comments