mirror of
https://github.com/apache/superset.git
synced 2026-04-19 08:04:53 +00:00
pylint: accept specific 2 character names by default (#9460)
* lint: accept 2 letter names by default * Address review comments * Remove e and d from good-names
This commit is contained in:
@@ -46,8 +46,8 @@ class RefreshDatasetCommand(BaseCommand):
|
||||
try:
|
||||
self._model.fetch_metadata()
|
||||
return self._model
|
||||
except Exception as e:
|
||||
logger.exception(e)
|
||||
except Exception as ex:
|
||||
logger.exception(ex)
|
||||
raise DatasetRefreshFailedError()
|
||||
raise DatasetRefreshFailedError()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user