@@ -572,7 +572,7 @@ def process(self, **kwargs: Any) -> None: # noqa: ARG002
572
572
if self .get_input ("include_exposure_information" ):
573
573
text += (
574
574
" - "
575
- f" { exif_group [' Exposure Time' ]:.6f} \" "
575
+ f' { exif_group [" Exposure Time" ]:.6f} " '
576
576
f"f{ exif_group ['F Number' ]} "
577
577
f"{ exif_group ['ISO' ]} "
578
578
)
@@ -752,8 +752,7 @@ def __init__(self, *args: Any, **kwargs: Any) -> None:
752
752
super ().__init__ (* args , ** kwargs )
753
753
754
754
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'
757
756
)
758
757
759
758
self .add_input_port ("metadata" )
@@ -1150,8 +1149,7 @@ def process(self, **kwargs: Any) -> None: # noqa: ARG002
1150
1149
self .log ("Lens vignette was successfully corrected!" )
1151
1150
else :
1152
1151
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."
1155
1153
)
1156
1154
1157
1155
if self .get_input ("correct_chromatic_aberration" ):
@@ -1198,8 +1196,7 @@ def process(self, **kwargs: Any) -> None: # noqa: ARG002
1198
1196
self .log ("Lens distortion was successfully corrected!" )
1199
1197
else :
1200
1198
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."
1203
1200
)
1204
1201
1205
1202
self .set_output ("output_image" , output_image )
0 commit comments