Skip to content

Commit 46c4ea2

Browse files
committed
use '/' seperator in merge to operations.
1 parent 23fef9b commit 46c4ea2

File tree

1 file changed

+1
-1
lines changed
  • stac_fastapi/sfeos_helpers/stac_fastapi/sfeos_helpers/database

1 file changed

+1
-1
lines changed

stac_fastapi/sfeos_helpers/stac_fastapi/sfeos_helpers/database/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def merge_to_operations(data: Dict) -> List:
7676
nested_operations = merge_to_operations(value)
7777

7878
for nested_operation in nested_operations:
79-
nested_operation.path = f"{key}.{nested_operation.path}"
79+
nested_operation.path = f"{key}/{nested_operation.path}"
8080
operations.append(nested_operation)
8181

8282
else:

0 commit comments

Comments
 (0)