clear screen on init
This commit is contained in:
parent
135f38447c
commit
270266b5c7
3 changed files with 3 additions and 2 deletions
|
@ -16,6 +16,7 @@ class Interface:
|
|||
curses.init_pair(i + 1, i, -1)
|
||||
|
||||
def init(self, screen):
|
||||
screen.clear()
|
||||
self.init_colors()
|
||||
|
||||
def update(self, screen):
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[bumpversion]
|
||||
current_version = 2.0.4
|
||||
current_version = 2.0.5
|
||||
|
||||
[wheel]
|
||||
universal = 1
|
||||
|
|
2
setup.py
2
setup.py
|
@ -9,7 +9,7 @@ with open("requirements.txt", "r", encoding="utf-8") as fh:
|
|||
|
||||
setup(
|
||||
name="fasttyper",
|
||||
version="2.0.4",
|
||||
version="2.0.5",
|
||||
author="Piotr Domanski",
|
||||
author_email="pi.domanski@gmail.com",
|
||||
description="Minimalistic typing exercise",
|
||||
|
|
Loading…
Reference in a new issue