reformat (black)

This commit is contained in:
2025-04-17 14:35:56 -04:00
parent d12b066c8e
commit 1bb482315e
20 changed files with 1928 additions and 1326 deletions

View File

@ -1,15 +1,22 @@
"""
AI
"""
class AIException(Exception):
"""AI Exception (generic)"""
pass
"""
LoveHate
"""
class LoveHateException(Exception):
"""Love Hate Exception (generic)"""
pass
@ -17,6 +24,8 @@ class LoveHateException(Exception):
Misc
"""
class MiscException(Exception):
"""Misc Exception (generic)"""
pass
pass