fix: correctly debug preprocessor again (#3332)

fixes https://github.com/lllyasviel/Fooocus/issues/3327
as discussed in https://github.com/lllyasviel/Fooocus/discussions/3323

add missing inheritance for EarlyReturnException from BaseException to correctly throw and catch
This commit is contained in:
Manuel Schmid 2024-07-21 11:49:28 +02:00 committed by GitHub
parent f597bf1ab6
commit 2e8cff296e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ class AsyncTask:
async_tasks = []
class EarlyReturnException:
class EarlyReturnException(BaseException):
pass