mirror of
https://github.com/apache/superset.git
synced 2026-05-12 19:35:17 +00:00
chore(pylint): Reenable raise-missing-from check (#16266)
Co-authored-by: John Bodley <john.bodley@airbnb.com>
This commit is contained in:
@@ -48,7 +48,7 @@ class UpdateAnnotationLayerCommand(BaseCommand):
|
||||
annotation_layer = AnnotationLayerDAO.update(self._model, self._properties)
|
||||
except DAOUpdateFailedError as ex:
|
||||
logger.exception(ex.exception)
|
||||
raise AnnotationLayerUpdateFailedError()
|
||||
raise AnnotationLayerUpdateFailedError() from ex
|
||||
return annotation_layer
|
||||
|
||||
def validate(self) -> None:
|
||||
|
||||
Reference in New Issue
Block a user