We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82691b8 commit 489f024Copy full SHA for 489f024
tipg/dbmodel.py
@@ -188,9 +188,7 @@ def extent(self) -> Optional[Extent]:
188
"crs": "http://www.opengis.net/def/crs/OGC/1.3/CRS84",
189
}
190
191
- if cols := self.datetime_columns:
192
- cols = [col for col in cols if col.mindt or col.maxdt]
193
-
+ if cols := [col for col in self.datetime_columns if col.mindt or col.maxdt]:
194
intervals = []
195
if len(cols) == 1:
196
if cols[0].mindt or cols[0].maxdt:
0 commit comments