less print

This commit is contained in:
Waylon Walker 2023-06-10 19:14:19 -05:00
parent e904501021
commit 9bc2518a08
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4

View file

@ -9,7 +9,6 @@
import atexit
import pygame
from rich.console import Console
import typer
from typer import Typer
@ -77,7 +76,7 @@ class Client:
self.others = [hero for hero in HeroRead.list() if hero.id != self.hero.id]
def render(self):
Console().print(self.hero)
# Console().print(self.hero)
self.screen.fill((0, 0, 0))
for other in self.others: