Remove comma

This commit is contained in:
Matthew DeMartino
2021-05-24 20:40:29 -04:00
parent ddb9d44354
commit b08af0865a
+3 -1
View File
@@ -1,13 +1,15 @@
from dungeonsheets.stats import Ability, ArmorClass, Initiative, Speed, Skill,
from dungeonsheets.stats import Ability, ArmorClass, Initiative, Speed, Skill
from abc import ABC
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
__version__ = read("../VERSION").strip()
class Entity(ABC):
"""A thing with stats. Use Monster or Character, not this class directly!"""