Ran flake8 and black linters, and other cleanup-related fixes.

Project now passes flake8 and black linter (also including more rst
cleanup). Moved latex related things to dedicated ``latex.py`` module,
and removed the ``makesheets -dF`` call from travis.
This commit is contained in:
Mark Wolfman
2021-04-16 11:10:17 -05:00
parent 9dfc02f3df
commit 30369ce1d4
81 changed files with 7668 additions and 4936 deletions
+4 -5
View File
@@ -5,15 +5,14 @@ class Jump(Spell):
"""You touch a creature. The creature's jump distance is tripled until the spell
ends.
"""
name = "Jump"
level = 1
casting_time = "1 action"
casting_range = "Touch"
components = ('V', 'S', 'M')
materials = """A grasshopper's hind leg"""
components = ("V", "S", "M")
materials = "A grasshopper's hind leg"
duration = "1 minute"
ritual = False
magic_school = "Transmutation"
classes = ('Druid', 'Ranger', 'Sorcerer', 'Wizard')
classes = ("Druid", "Ranger", "Sorcerer", "Wizard")