Skip to content

Commit 46516ea

Browse files
committed
removed todos
1 parent a3bec04 commit 46516ea

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

pystac/extensions/mlm.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,9 @@
2727
)
2828
AssetExtensionType = TypeVar("AssetExtensionType", bound="_AssetMLMExtension")
2929

30-
# todo: support multiple version?
3130
SCHEMA_URI_PATTERN: str = "https://stac-extensions.github.io/mlm/v{version}/schema.json"
3231
DEFAULT_VERSION: str = "1.4.0"
33-
SUPPORTED_VERSIONS: list[str] = ["1.4.0"]
32+
SUPPORTED_VERSIONS: list[str] = ["1.0.0", "1.1.0", "1.2.0", "1.3.0", "1.4.0"]
3433

3534
PREFIX: str = "mlm:"
3635

@@ -659,7 +658,7 @@ def __eq__(self, other: object) -> bool:
659658
def apply(
660659
self,
661660
shape: list[int],
662-
dim_order: list[str], # todo: make Dimension Enum?
661+
dim_order: list[str],
663662
data_type: DataType,
664663
) -> None:
665664
"""
@@ -1519,7 +1518,6 @@ def framework(self) -> str | None:
15191518

15201519
@framework.setter
15211520
def framework(self, v: str | None) -> None:
1522-
# todo: make enum?
15231521
self._set_property(FRAMEWORK_PROP, v)
15241522

15251523
@property

0 commit comments

Comments
 (0)