mirror of
https://github.com/apache/superset.git
synced 2026-04-22 01:24:43 +00:00
fix: Remove recursive repr call (#29314)
This commit is contained in:
@@ -28,7 +28,7 @@ class CommandException(SupersetException):
|
||||
def __repr__(self) -> str:
|
||||
if self._exception:
|
||||
return repr(self._exception)
|
||||
return repr(self)
|
||||
return super().__repr__()
|
||||
|
||||
|
||||
class ObjectNotFoundError(CommandException):
|
||||
|
||||
Reference in New Issue
Block a user