Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typo #511

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
fix typo
  • Loading branch information
ljhcage committed Dec 2, 2021
commit 6ec7701e410f08ea8cc825f820f52f71b53e4fcd
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ Thanks glitchassassin and BladeMight for the pull requests.

# 0.9.11

- [All] Fixed Python2 compatbility.
- [All] Fixed Python2 compatibility.
- [All] Updated release process to always run both Python2 and Python3 tests before publishing.


Expand Down
2 changes: 1 addition & 1 deletion keyboard/_mouse_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def wait_for_events_queue(self):
def flush_events(self):
self.wait_for_events_queue()
events = list(self.events)
# Ugly, but requried to work in Python2. Python3 has list.clear
# Ugly, but required to work in Python2. Python3 has list.clear
del self.events[:]
return events

Expand Down
2 changes: 1 addition & 1 deletion keyboard/mouse.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def play(events, speed_factor=1.0, include_clicks=True, include_moves=True, incl
intervals. If speed_factor is <= 0 then the actions are replayed as fast
as the OS allows. Pairs well with `record()`.

The parameters `include_*` define if events of that type should be inluded
The parameters `include_*` define if events of that type should be included
in the replay or ignored.
"""
last_time = None
Expand Down