Skip to content

Commit fb737d0

Browse files
authored
chore: fix malformed f-string (#2563)
* fix: incorrect f-string in docling.datamodel.document * DCO Remediation Commit for Johannes Damp <[email protected]> I, Johannes Damp <[email protected]>, hereby add my Signed-off-by to this commit: 0f690a8 Signed-off-by: Johannes Damp <[email protected]> --------- Signed-off-by: Johannes Damp <[email protected]>
1 parent 8360aa5 commit fb737d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docling/datamodel/document.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ def __init__(
195195
self.valid = False
196196
_log.exception(
197197
"An unexpected error occurred while opening the document "
198-
"f{self.file.name}",
198+
f"{self.file.name}",
199199
exc_info=e,
200200
)
201201
# raise

0 commit comments

Comments
 (0)