mirror of
https://github.com/apache/superset.git
synced 2026-04-19 08:04:53 +00:00
chore(pylint): Reenable raise-missing-from check (#16266)
Co-authored-by: John Bodley <john.bodley@airbnb.com>
This commit is contained in:
@@ -65,7 +65,7 @@ def certificate_form_validator(_: _, field: StringField) -> None:
|
||||
try:
|
||||
utils.parse_ssl_cert(field.data)
|
||||
except CertificateException as ex:
|
||||
raise ValidationError(ex.message)
|
||||
raise ValidationError(ex.message) from ex
|
||||
|
||||
|
||||
def upload_stream_write(form_file_field: "FileStorage", path: str) -> None:
|
||||
|
||||
Reference in New Issue
Block a user