Skip to content

Commit 489f024

Browse files
committed
fix issue when not datetime col
1 parent 82691b8 commit 489f024

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tipg/dbmodel.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -188,9 +188,7 @@ def extent(self) -> Optional[Extent]:
188188
"crs": "http://www.opengis.net/def/crs/OGC/1.3/CRS84",
189189
}
190190

191-
if cols := self.datetime_columns:
192-
cols = [col for col in cols if col.mindt or col.maxdt]
193-
191+
if cols := [col for col in self.datetime_columns if col.mindt or col.maxdt]:
194192
intervals = []
195193
if len(cols) == 1:
196194
if cols[0].mindt or cols[0].maxdt:

0 commit comments

Comments
 (0)