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 97956b8 commit 7621455Copy full SHA for 7621455
CHANGELOG.md
@@ -11,6 +11,7 @@
11
### Fixed
12
13
- More permissive collection extent deserialization ([#1559](https://github.com/stac-utils/pystac/pull/1559))
14
+- Type of `proj:code` setter ([#1560](https://github.com/stac-utils/pystac/pull/1560))
15
16
## [v1.13.0] - 2025-04-15
17
pystac/extensions/projection.py
@@ -163,7 +163,7 @@ def code(self) -> str | None:
163
return self._get_property(CODE_PROP, str)
164
165
@code.setter
166
- def code(self, v: int | None) -> None:
+ def code(self, v: str | None) -> None:
167
self._set_property(CODE_PROP, v, pop_if_none=False)
168
169
@property
0 commit comments