Skip to content

Commit

Permalink
except KeyError for pyautogui rather than NameError
Browse files Browse the repository at this point in the history
  • Loading branch information
beduffy committed Feb 23, 2025
1 parent 547b3fc commit 5a9089f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imitate_mouse/run_mouse_policy.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
try:
import pyautogui
# from Xlib.display import Display
except ImportError:
except KeyError:
pyautogui = None


Expand Down

0 comments on commit 5a9089f

Please sign in to comment.