Inherit `StopLoop` from `Exception` so the python doesn't piss off

pull/1/head
Hikari 2022-04-23 12:32:24 +00:00
parent 1b846a6e1b
commit 0bb34f9966
No known key found for this signature in database
GPG Key ID: 5FA52ACBB2AD964D
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ class LoadError(Exception):
return self._error
class StopLoop:
class StopLoop(Exception):
"""Stops the loop, in which is raised"""