Skip to content

Commit 477bf96

Browse files
authored
Merge pull request #16 from JE-Chen/dev
Dev
2 parents 0f5d136 + 2f4ef07 commit 477bf96

File tree

4 files changed

+21
-85
lines changed

4 files changed

+21
-85
lines changed

.circleci/config.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ jobs:
1313

1414
steps:
1515
- checkout
16+
# upgrade
17+
- run:
18+
command: pip install --upgrade --user pip setuptools wheel
19+
name: pip install --upgrade --user pip setuptools wheel
1620
# pip require package
1721
- run:
1822
command: pip install --user -r dev_requirements.txt
@@ -89,6 +93,10 @@ jobs:
8993

9094
steps:
9195
- checkout
96+
# upgrade
97+
- run:
98+
command: pip install --upgrade --user pip setuptools wheel
99+
name: pip install --upgrade --user pip setuptools wheel
92100
# pip require package
93101
- run:
94102
command: pip install --user -r requirements.txt

.idea/workspace.xml

Lines changed: 11 additions & 83 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev_setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="je_auto_control_dev",
8-
version="0.0.03",
8+
version="0.0.04",
99
author="JE-Chen",
1010
author_email="zenmailman@gmail.com",
1111
description="auto testing",

je_auto_control/wrapper/auto_control_keyboard.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def press_key(keycode: [int, str], is_shift: bool = False, **kwargs):
3333
except AutoControlKeyboardException:
3434
raise AutoControlKeyboardException(keyboard_press_key)
3535
except TypeError:
36-
raise AutoControlKeyboardException(keyboard_type_key)
36+
raise AutoControlKeyboardException(repr(TypeError))
3737

3838

3939
def release_key(keycode: [int, str], is_shift: bool = False, **kwargs):

0 commit comments

Comments
 (0)