Skip to content

Commit a54b0e4

Browse files
committed
fix(suffix): re renamed branded_suffix into branding_suffix
1 parent b7906bf commit a54b0e4

7 files changed

Lines changed: 7 additions & 8 deletions

File tree

src/esgvoc/api/data_descriptors/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,5 +153,4 @@
153153
"horizontal_computational_grid": HorizontalComputationalGrid,
154154
"horizontal_subgrid": HorizontalSubgrid,
155155
"vertical_computational_grid": VerticalComputationalGrid,
156-
"branding_suffix": BrandedSuffix,
157156
}

src/esgvoc/api/data_descriptors/area_label.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class AreaLabel(PlainTermDataDescriptor):
1212
Examples: "lnd", "air", "sea", "u"
1313
1414
This label is used as the area component of a branded variable's suffix
15-
(see :py:class:`BrandedSuffix`).
15+
(see :py:class:`BrandingSuffix`).
1616
"""
1717

1818
cf_area_type: str | None

src/esgvoc/api/data_descriptors/branded_variable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class BrandedVariable(CompositeTermDataDescriptor):
1414
The concept of a branded variable was introduced in CMIP7.
1515
A branded variable is composed of two parts.
1616
The first part is the root variable (see :py:class:`Variable`).
17-
The second is the suffix (see :py:class:`BrandedSuffix`).
17+
The second is the suffix (see :py:class:`BrandingSuffix`).
1818
1919
For underlying details and logic, please see
2020
[Taylor et al., 2025](https://docs.google.com/document/d/19jzecgymgiiEsTDzaaqeLP6pTvLT-NzCMaq-wu-QoOc/edit?pli=1&tab=t.0).

src/esgvoc/api/data_descriptors/horizontal_label.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ class HorizontalLabel(PlainTermDataDescriptor):
1616
[Taylor et al., 2025](https://docs.google.com/document/d/19jzecgymgiiEsTDzaaqeLP6pTvLT-NzCMaq-wu-QoOc/edit?pli=1&tab=t.0).
1717
1818
This label is used as the area component of a branded variable's suffix
19-
(see :py:class:`BrandedSuffix`).
19+
(see :py:class:`BrandingSuffix`).
2020
""" # noqa: E501

src/esgvoc/api/data_descriptors/known_branded_variable.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# The concept of a branded variable was introduced in CMIP7.
1313
# A branded variable is composed of two parts.
1414
# The first part is the root variable (see :py:class:`Variable`).
15-
# The second is the suffix (see :py:class:`BrandedSuffix`).
15+
# The second is the suffix (see :py:class:`BrandingSuffix`).
1616
#
1717
# For further details on the development of branded variables,
1818
# see [this paper draft](https://docs.google.com/document/d/19jzecgymgiiEsTDzaaqeLP6pTvLT-NzCMaq-wu-QoOc/edit?pli=1&tab=t.0).
@@ -33,7 +33,7 @@ class KnownBrandedVariable(PlainTermDataDescriptor):
3333
The concept of a branded variable was introduced in CMIP7.
3434
A branded variable is composed of two parts.
3535
The first part is the root variable (see :py:class:`Variable`).
36-
The second is the suffix (see :py:class:`BrandedSuffix`).
36+
The second is the suffix (see :py:class:`BrandingSuffix`).
3737
3838
For further details on the development of branded variables,
3939
see [this paper draft](https://docs.google.com/document/d/19jzecgymgiiEsTDzaaqeLP6pTvLT-NzCMaq-wu-QoOc/edit?pli=1&tab=t.0).

src/esgvoc/api/data_descriptors/temporal_label.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ class TemporalLabel(PlainTermDataDescriptor):
1616
[Taylor et al., 2025](https://docs.google.com/document/d/19jzecgymgiiEsTDzaaqeLP6pTvLT-NzCMaq-wu-QoOc/edit?pli=1&tab=t.0).
1717
1818
This label is used as the area component of a branded variable's suffix
19-
(see :py:class:`BrandedSuffix`).
19+
(see :py:class:`BrandingSuffix`).
2020
""" # noqa: E501

src/esgvoc/api/data_descriptors/vertical_label.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ class VerticalLabel(PlainTermDataDescriptor):
1616
[Taylor et al., 2025](https://docs.google.com/document/d/19jzecgymgiiEsTDzaaqeLP6pTvLT-NzCMaq-wu-QoOc/edit?pli=1&tab=t.0).
1717
1818
This label is used as the area component of a branded variable's suffix
19-
(see :py:class:`BrandedSuffix`).
19+
(see :py:class:`BrandingSuffix`).
2020
""" # noqa: E501

0 commit comments

Comments
 (0)