Skip to content

Commit 8c0c51f

Browse files
committed
Fix typo in timestamp column reference and bump version to 0.9.3.6
1 parent 1d881a7 commit 8c0c51f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pydala/dataset.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -875,7 +875,7 @@ def load(
875875
if len(self._timestamp_columns) > 0:
876876
self._timestamp_column = self._timestamp_columns[0]
877877
if self._timestamp_column is not None:
878-
ts_type = self.schema.field(self._timestamp_colum).type
878+
ts_type = self.schema.field(self._timestamp_column).type
879879
if hasattr(ts_type, "tz"):
880880
tz = ts_type.tz
881881
else:

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ name = "pydala2"
2323
readme = "README.md"
2424
repository = "https://github.com/legout/pydala2"
2525
requires-python = ">= 3.10"
26-
version = "0.9.3.5"
26+
version = "0.9.3.6"
2727

2828
[project.optional-dependencies]
2929
legacy = ["polars-lts-cpu>=0.20.4"]

0 commit comments

Comments
 (0)