You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser.add_argument("-w", "--website", type = str, default = "",
help = "specify website.")
parser.add_argument("-w", "--website", default = None, type = str,
help = "Specify a particular website to download content from.")
**not allow two the -w**
The text was updated successfully, but these errors were encountered:
```
parser.add_argument("-w", "--website", type = str, default = "",
help = "specify website.")
parser.add_argument("-w", "--website", default = None, type = str,
help = "Specify a particular website to download content from.")
The text was updated successfully, but these errors were encountered: