clear screen on init

This commit is contained in:
Doman 2022-04-12 19:26:34 +02:00
parent 135f38447c
commit 270266b5c7
3 changed files with 3 additions and 2 deletions

View file

@ -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):

View file

@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.0.4
current_version = 2.0.5
[wheel]
universal = 1

View file

@ -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",