Skip to content

Commit e7d5075

Browse files
committed
Fixes for PR
1 parent 00ecd7a commit e7d5075

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

data_diff/__main__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"--threads",
4949
default="1",
5050
help="Number of worker threads to use per database. Default=1. "
51-
"'auto' will use the maximum amount recommended by Python. "
51+
"A higher number will increase performance, but take more capacity from your database. "
5252
"'serial' guarantees a single-threaded execution of the algorithm (useful for debugging).",
5353
)
5454
def main(
@@ -86,8 +86,6 @@ def main(
8686
if threads.lower() == "serial":
8787
threaded = False
8888
threads = 1
89-
elif threads.lower() == "auto":
90-
threads = None
9189
else:
9290
try:
9391
threads = int(threads)

0 commit comments

Comments
 (0)