mirror of
https://github.com/stijndcl/didier.git
synced 2026-04-07 15:48:29 +02:00
Switch to flake8
This commit is contained in:
parent
61128dda92
commit
dd66087193
33 changed files with 138 additions and 31 deletions
|
|
@ -1,2 +1,5 @@
|
|||
__all__ = ["DuplicateInsertException"]
|
||||
|
||||
|
||||
class DuplicateInsertException(Exception):
|
||||
"""Exception raised when a value already exists"""
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
__all__ = ["DoubleNightly", "NotEnoughDinks"]
|
||||
|
||||
|
||||
class DoubleNightly(Exception):
|
||||
"""Exception raised when claiming nightlies multiple times per day"""
|
||||
|
||||
|
|
|
|||
|
|
@ -1,2 +1,5 @@
|
|||
__all__ = ["NoResultFoundException"]
|
||||
|
||||
|
||||
class NoResultFoundException(Exception):
|
||||
"""Exception raised when nothing was found"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue