Skip to content

Commit 671fed2

Browse files
fix: standardize algorithm group ID
1 parent 546724b commit 671fed2

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

m2l/processing/algorithms/extract_basal_contacts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def group(self) -> str:
5656

5757
def groupId(self) -> str:
5858
"""Return the algorithm group ID."""
59-
return "loop3d"
59+
return "Loop3d"
6060

6161
def initAlgorithm(self, config: Optional[dict[str, Any]] = None) -> None:
6262
"""Initialize the algorithm parameters."""

m2l/processing/algorithms/sampler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def group(self) -> str:
6161

6262
def groupId(self) -> str:
6363
"""Return the algorithm group ID."""
64-
return "loop3d"
64+
return "Loop3d"
6565

6666
def initAlgorithm(self, config: Optional[dict[str, Any]] = None) -> None:
6767
"""Initialize the algorithm parameters."""

m2l/processing/algorithms/sorter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@ def name(self) -> str:
5858
return "loop_sorter"
5959

6060
def displayName(self) -> str:
61-
return "loop: Stratigraphic sorter"
61+
return "Loop3d: Stratigraphic sorter"
6262

6363
def group(self) -> str:
6464
return "Loop3d"
6565

6666
def groupId(self) -> str:
67-
return "loop3d"
67+
return "Loop3d"
6868

6969
# ----------------------------------------------------------
7070
# Parameters

m2l/processing/algorithms/thickness_calculator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def group(self) -> str:
6262

6363
def groupId(self) -> str:
6464
"""Return the algorithm group ID."""
65-
return "loop3d"
65+
return "Loop3d"
6666

6767
def initAlgorithm(self, config: Optional[dict[str, Any]] = None) -> None:
6868
"""Initialize the algorithm parameters."""

0 commit comments

Comments
 (0)