Set False by default

This commit is contained in:
Dimitris Zlatanidis 2023-03-13 16:54:42 +02:00
parent 2aab67b1da
commit d09e10be92
2 changed files with 3 additions and 3 deletions

View file

@ -28,8 +28,8 @@
# Set false to all the questions. If set false option --yes will not work.
# Default is true. [true/false].
ASK_QUESTION = true
# Download parallel multi-sources. Default is true. [true/false].
PARALLEL_DOWNLOADS = true
# Download parallel multi-sources. Default is false. [true/false].
PARALLEL_DOWNLOADS = false
# Pass your file pattern here, instead, you can use '--file-pattern=' option.
FILE_PATTERN = ""

View file

@ -120,7 +120,7 @@ class Configs:
ask_question: bool = True
# Download parallel multi-sources.
parallel_downloads: bool = True
parallel_downloads: bool = False
# Pass the file pattern here.
file_pattern_conf: str = ""