Skip to content

Commit

Permalink
Fixes bug in drawing API; Bump version to 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jsbueno committed Jul 25, 2021
1 parent 8bf40c9 commit c0b26bc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
setup(
name="terminedia",
packages=find_packages(),
version="0.4.0",
version="0.4.1",
license="LGPLv3+",
author="João S. O. Bueno",
author_email="[email protected]",
Expand Down
3 changes: 3 additions & 0 deletions terminedia/screen.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,9 @@ def set_at(self, pos, pixel=None):
def get_at(self, pos):
return self[pos]

def get_raw(self, pos):
return self.shape.get_raw(pos)

def reset_at(self, pos):
"""Resets pixel at given coordinate
Expand Down

0 comments on commit c0b26bc

Please sign in to comment.