Fixed broken test and cleaned up with flake8/black.

This commit is contained in:
Mark Wolfman
2021-06-04 11:36:35 -05:00
parent 84453404b4
commit 3d8b9987db
34 changed files with 74 additions and 73 deletions
+4 -2
View File
@@ -8,7 +8,6 @@ from dungeonsheets.monsters.monsters import Monster
from dungeonsheets.stats import Ability
class SaberToothedTiger(Monster):
"""
**Keen Smell**: The tiger has advantage on Wisdom (Perception) checks that rely on smell.
@@ -645,7 +644,10 @@ class Spy(Monster):
description = "Medium humanoid, any alignment"
challenge_rating = 1
armor_class = 12
skills = "Deception +5, Insight +4, Investigation +5, Perception +6, Persuasion +5, Stealth +4"
skills = (
"Deception +5, Insight +4, Investigation +5, Perception +6, Persuasion +5,"
" Stealth +4"
)
senses = "Passive Perception 16"
languages = "any two languages"
strength = Ability(10)