Skip to content

Commit

Permalink
improve comments
Browse files Browse the repository at this point in the history
  • Loading branch information
seanbudd committed May 17, 2021
1 parent 994e661 commit e0536d9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions source/documentBase.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,8 @@ def _getNearestTableCell(self, tableID, startPos, origRow, origCol, origRowSpan,
raise LookupError

def _tableMovementScriptHelper(self, movement="next", axis=None):
# documentBase is a core module and should not depend on these UI modules. (#12404)
# documentBase is a core module and should not depend on these UI modules and so they are imported
# at run-time. (#12404)
from scriptHandler import isScriptWaiting
from speech import speakTextInfo
import ui
Expand Down Expand Up @@ -190,7 +191,7 @@ def script_previousColumn(self, gesture):
script_previousColumn.__doc__ = _("moves to the previous table column")

def script_toggleIncludeLayoutTables(self,gesture):
# documentBase is a core module and should not depend on UI modules. (#12404)
# documentBase is a core module and should not depend on UI, so it is imported at run-time. (#12404)
import ui
if config.conf["documentFormatting"]["includeLayoutTables"]:
# Translators: The message announced when toggling the include layout tables browse mode setting.
Expand Down

0 comments on commit e0536d9

Please sign in to comment.