From 7d0dafa2d6c41e594217b784e19c0e463c062bce Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Thu, 14 Aug 2025 17:33:21 +0200 Subject: Add a NOT NULL contraint on geometry columns when creating the output layer. When the output driver supports altering GeomFieldDefn's nullable flag after the fact. PostgreSQL supports that. GPKG doesn't, but one can use GEOMETRY_NULLABLE=NO in layer creation options instead. See https://gdal.org/en/stable/development/rfc/rfc53_ogr_notnull_default.html This commit partially reverts 2c3ee79cb434fc4cf315ee3a6a526156053d76c4. --- .pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.pylintrc') diff --git a/.pylintrc b/.pylintrc index b87e779..6b3e91d 100644 --- a/.pylintrc +++ b/.pylintrc @@ -2,7 +2,7 @@ max-args = 20 max-positional-arguments = 20 max-locals = 50 -max-branches = 25 +max-branches = 30 max-statements = 100 max-nested-blocks = 10 max-module-lines = 1250 -- cgit v1.2.3