Skip to content

Commit

Permalink
Fix flake8 error
Browse files Browse the repository at this point in the history
  • Loading branch information
nvdaes committed Dec 19, 2020
1 parent 8c785b7 commit a7c6e28
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion addon/globalPlugins/placeMarkers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ def doFindText(text, reverse=False, caseSensitive=False, willSayAllResume=False)
wx.OK|wx.ICON_ERROR
)


def doFindTextUp(text, caseSensitive=False, willSayAllResume=False):
doFindText(text, reverse=True, caseSensitive=caseSensitive, willSayAllResume=willSayAllResume)

Expand Down Expand Up @@ -697,7 +698,7 @@ def script_activateRestoreDialog(self, gesture):
description=_("finds a text string from the current cursor position for a specific document."),
gesture="kb:NVDA+control+shift+f"
)
def script_specificFind(self,gesture, reverse=False):
def script_specificFind(self, gesture, reverse=False):
obj=api.getFocusObject()
if not controlTypes.STATE_MULTILINE in obj.states:
treeInterceptor=obj.treeInterceptor
Expand Down

0 comments on commit a7c6e28

Please sign in to comment.