Skip to content
This repository has been archived by the owner on Aug 15, 2024. It is now read-only.

Commit

Permalink
Remove quiet param on joystick function
Browse files Browse the repository at this point in the history
  • Loading branch information
dsblank committed Mar 17, 2021
1 parent 6933292 commit cc570d2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion aitk/utils/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
#
# ***********************************************************

version_info = (0, 0, 5)
version_info = (0, 1, 0)
__version__ = ".".join(map(str, version_info))
4 changes: 2 additions & 2 deletions aitk/utils/joystick.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ def handle_mouse_up(self, x, y):
self.reset()

def reset(self):
# translate, rotate, quiet
self.function(0, 0, True)
# translate, rotate
self.function(0, 0)
self.clear()
self.canvas.fill_style = "black"
self.canvas.fill_circle(self.width/2, self.height/2, self.width/10)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def get_version(file, name="__version__"):

version = get_version(os.path.join(HERE, "aitk/utils/_version.py"))

with open("README.md", "r") as fh:
with open(os.path.join(HERE, "README.md"), "r") as fh:
long_description = fh.read()

setup_args = dict(
Expand Down

0 comments on commit cc570d2

Please sign in to comment.