PEP8 formatter changes

This commit is contained in:
Eryn Wells 2023-02-10 21:25:00 -08:00
parent 727a0737c6
commit f05dfdef55
5 changed files with 20 additions and 1 deletions

View file

@ -7,6 +7,7 @@ from typing import Optional
class Component:
'''A base, abstract Component that implement some aspect of an Entity's behavior.'''
class Fighter(Component):
'''A Fighter is an Entity that can fight. That is, it has hit points (health), attack, and defense.