--batch_size no longer required, defaults to 1000

This commit is contained in:
Никита Тырин 2025-05-08 16:31:58 +03:00
parent 2cd67bd295
commit f0b505330f

View File

@ -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'
)