Skip to content

Commit ba99487

Browse files
committed
remove some type hints in __init__
1 parent ca28ca0 commit ba99487

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "polars_coord_transforms"
3-
version = "0.9.0"
3+
version = "0.9.1"
44
edition = "2021"
55

66
[lib]

polars_coord_transforms/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,8 @@ def distance(self) -> DistanceNameSpace:
168168
class CTColumn(Protocol):
169169
def __cal__(
170170
self,
171-
name: str | PolarsDataType | Iterable[str] | Iterable[PolarsDataType],
172-
*more_names: str | PolarsDataType,
171+
name,
172+
*more_names,
173173
) -> CoordTransformExpr:
174174
...
175175

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ classifiers = [
1313
"Programming Language :: Python :: Implementation :: CPython",
1414
"Programming Language :: Python :: Implementation :: PyPy",
1515
]
16-
version = "0.9.0"
16+
version = "0.9.1"
1717
authors = [
1818
{name="Georgy Popov"}
1919
]

0 commit comments

Comments
 (0)