Skip to content

Commit 68ae5ec

Browse files
committed
v0.2.10
1 parent f8ce12c commit 68ae5ec

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

pixi.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "vecorel-cli"
7-
version = "0.2.9"
7+
version = "0.2.10"
88
description = "CLI tools such as validation and file format conversion for vecorel."
99
readme = "README.md"
1010
license = "Apache-2.0"

vecorel_cli/create_stac.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@ def create_cli(
5454
temporal_property: Optional[str] = None,
5555
indent: Optional[int] = None,
5656
) -> Union[Path, str, bool]:
57-
stac = self.create_from_file(source, data_url=str(source), temporal_property=temporal_property)
57+
stac = self.create_from_file(
58+
source, data_url=str(source), temporal_property=temporal_property
59+
)
5860
if stac:
5961
return self._json_dump_cli(stac, target, indent)
6062
else:

0 commit comments

Comments
 (0)