Skip to content

Commit d9709d0

Browse files
authored
fix: UnboundLocal variable (#269)
fix UnboundLocal variable Signed-off-by: Saidgurbuz <[email protected]>
1 parent 03a53dd commit d9709d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docling_core/types/doc/document.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1383,7 +1383,7 @@ def export_to_otsl(
13831383
if add_cross_cell:
13841384
body.append(str(TableToken.OTSL_XCEL.value))
13851385
body.append(str(TableToken.OTSL_NL.value))
1386-
body_str = "".join(body)
1386+
body_str = "".join(body)
13871387
return body_str
13881388

13891389
@deprecated("Use export_to_doctags() instead.")

0 commit comments

Comments
 (0)