Skip to content

Commit

Permalink
Remove compatibility wrappers around hasUiAccess and execElevated
Browse files Browse the repository at this point in the history
… introduced in nvaccess#10493 from the config module
  • Loading branch information
lukaszgo1 committed Dec 12, 2020
1 parent fba5058 commit 4b097a5
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions source/config/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1179,16 +1179,3 @@ def exit(self):
def __exit__(self, excType, excVal, traceback):
self.exit()

# The below functions are moved to systemUtils module.
# They are kept here for backwards compatibility.
# They would be removed from the config module in NVDA 2021.1.


def execElevated(*args, **kwargs):
import systemUtils
systemUtils.execElevated(*args, **kwargs)


def hasUiAccess(*args, **kwargs):
import systemUtils
systemUtils.hasUiAccess(*args, **kwargs)

0 comments on commit 4b097a5

Please sign in to comment.