Skip to content

Commit

Permalink
Fix bug (thanks linting)
Browse files Browse the repository at this point in the history
  • Loading branch information
CyrilleB79 committed Nov 26, 2024
1 parent 0574a35 commit de9e73a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/appModules/powerpnt.py
Original file line number Diff line number Diff line change
Expand Up @@ -1201,7 +1201,7 @@ def _getFormatFieldAndOffsets(
formatField = textInfos.FormatField()
curRun = None
if calculateOffsets:
curRun, startOffset, endOffset = _getCurrentRun(self)
curRun, startOffset, endOffset = self._getCurrentRun(self)
if not curRun:
curRun = self.obj.ppObject.textRange.characters(offset + 1)
startOffset, endOffset = offset, self._endOffset
Expand Down

0 comments on commit de9e73a

Please sign in to comment.