File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ class AcesTransformType(Enum):
7373
7474
7575def generate_idt_urn (
76- colorspace_vendor : str ,
76+ colourspace_vendor : str ,
7777 encoding_colourspace : str ,
7878 encoding_transfer_function : str ,
7979 version_number : int ,
@@ -88,7 +88,7 @@ def generate_idt_urn(
8888
8989 Parameters
9090 ----------
91- colorspace_vendor
91+ colourspace_vendor
9292 The vendor for the colorspace, e.g., the device or software provider.
9393 encoding_colourspace
9494 The name of the encoding color space.
@@ -110,7 +110,7 @@ def generate_idt_urn(
110110 """
111111
112112 # Sanitize input strings by replacing dots with underscores
113- colorspace_vendor_clean = colorspace_vendor .replace ("." , "_" )
113+ colorspace_vendor_clean = colourspace_vendor .replace ("." , "_" )
114114 encoding_colourspace_clean = encoding_colourspace .replace ("." , "_" )
115115 encoding_transfer_function_clean = encoding_transfer_function .replace ("." , "_" )
116116
You can’t perform that action at this time.
0 commit comments