From f0b505330fe1b98c1f9e73588c079bdce6820aae Mon Sep 17 00:00:00 2001 From: tyrin Date: Thu, 8 May 2025 16:31:58 +0300 Subject: [PATCH] --batch_size no longer required, defaults to 1000 --- management/commands/load_survey.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/management/commands/load_survey.py b/management/commands/load_survey.py index 636df85..6eec4c9 100644 --- a/management/commands/load_survey.py +++ b/management/commands/load_survey.py @@ -59,7 +59,7 @@ class Command(BaseCommand): parser.add_argument( '--batch_size', type=int, - required=True, + default=1000, help='Integer number of pixels to be inserted into the database at once' )