Skip to content
Merged

Dev #40

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
[![AutoControl GitHub Actions Dev](https://github.com/JE-Chen/AutoControl/actions/workflows/auto-control-github-actions_dev.yml/badge.svg)](https://github.com/JE-Chen/AutoControl/actions/workflows/auto-control-github-actions_dev.yml)

[![AutoControl GitHub Actions Stable](https://github.com/JE-Chen/AutoControl/actions/workflows/auto-control-github-actions_stable.yml/badge.svg)](https://github.com/JE-Chen/AutoControl/actions/workflows/auto-control-github-actions_stable.yml)

### Documentation

[![Documentation Status](https://readthedocs.org/projects/python-jeautocontrol/badge/?version=latest)](https://python-jeautocontrol.readthedocs.io/en/latest/?badge=latest)
Expand Down
5 changes: 4 additions & 1 deletion test/unit_test/critical_exit/real_critical_test.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import sys

from je_auto_control import set_position
from je_auto_control import size
from je_auto_control import CriticalExit
Expand All @@ -19,6 +21,7 @@
set_position(200, 400)
set_position(400, 600)
raise AutoControlMouseException
except AutoControlMouseException:
except Exception as error:
print(repr(error), file=sys.stderr)
CriticalExit().init_critical_exit()
press_key("f7")