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:
parent
f597bf1ab6
commit
2e8cff296e
|
|
@ -158,7 +158,7 @@ class AsyncTask:
|
|||
async_tasks = []
|
||||
|
||||
|
||||
class EarlyReturnException:
|
||||
class EarlyReturnException(BaseException):
|
||||
pass
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue