diff options
| author | Arun Isaac | 2026-08-25 02:01:20 +0100 |
|---|---|---|
| committer | Arun Isaac | 2026-08-25 02:01:20 +0100 |
| commit | fcc4feac89b8ac42482f54ed86449aa5cfa3a158 (patch) | |
| tree | 9adc57ad2ea57c423164be193c3c78b9d76092b2 | |
| parent | 10019bd4774a3c1dd586d708c30714836ffde97e (diff) | |
| download | domagi-fcc4feac89b8ac42482f54ed86449aa5cfa3a158.tar.gz domagi-fcc4feac89b8ac42482f54ed86449aa5cfa3a158.tar.lz domagi-fcc4feac89b8ac42482f54ed86449aa5cfa3a158.zip | |
Remove threads variable name.
The threads variable name can be derived automatically from the --threads option name.
| -rw-r--r-- | domagi/domagi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/domagi/domagi.py b/domagi/domagi.py index e8e484a..b188bde 100644 --- a/domagi/domagi.py +++ b/domagi/domagi.py @@ -28,7 +28,7 @@ import tempfile import click import duckdb -threads_option = click.option("-t", "--threads", "threads", +threads_option = click.option("-t", "--threads", type=click.INT, help="number of threads (default: number of CPUs)") # The -P, --progress flags are no-ops in domagi. But, we add them to remain |
