@@ -572,7 +572,7 @@ def process(self, **kwargs: Any) -> None: # noqa: ARG002
572572 if self .get_input ("include_exposure_information" ):
573573 text += (
574574 " - "
575- f" { exif_group [' Exposure Time' ]:.6f} \" "
575+ f' { exif_group [" Exposure Time" ]:.6f} " '
576576 f"f{ exif_group ['F Number' ]} "
577577 f"{ exif_group ['ISO' ]} "
578578 )
@@ -752,8 +752,7 @@ def __init__(self, *args: Any, **kwargs: Any) -> None:
752752 super ().__init__ (* args , ** kwargs )
753753
754754 self .description = (
755- "Compute the input transform from the input metadata using the "
756- '"DNG" method'
755+ 'Compute the input transform from the input metadata using the "DNG" method'
757756 )
758757
759758 self .add_input_port ("metadata" )
@@ -1150,8 +1149,7 @@ def process(self, **kwargs: Any) -> None: # noqa: ARG002
11501149 self .log ("Lens vignette was successfully corrected!" )
11511150 else :
11521151 self .log (
1153- "Lens vignette was not corrected, "
1154- "the lens might be missing data."
1152+ "Lens vignette was not corrected, the lens might be missing data."
11551153 )
11561154
11571155 if self .get_input ("correct_chromatic_aberration" ):
@@ -1198,8 +1196,7 @@ def process(self, **kwargs: Any) -> None: # noqa: ARG002
11981196 self .log ("Lens distortion was successfully corrected!" )
11991197 else :
12001198 self .log (
1201- "Lens distortion was not corrected, "
1202- "the lens might be missing data."
1199+ "Lens distortion was not corrected, the lens might be missing data."
12031200 )
12041201
12051202 self .set_output ("output_image" , output_image )
0 commit comments