bito-code-review[bot] commented on PR #42463:
URL: https://github.com/apache/superset/pull/42463#issuecomment-5088684285

   <!-- Bito Reply -->
   The suggestion to remove the unused `SupersetSecurityException` import is 
correct. The import was added in the PR but is not utilized within 
`superset/commands/dataset/refresh.py`, which will cause linting failures. 
   
   To resolve this, you should remove `SupersetSecurityException` from the 
import list in `superset/commands/dataset/refresh.py`:
   
   ```python
   from superset.exceptions import (
       SupersetGenericDBErrorException,
   )
   ```
   
   I have checked the available PR comments, and there are no other pending 
suggestions to address at this time.
   
   **superset/commands/dataset/refresh.py**
   ```
   from superset.exceptions import (
       SupersetGenericDBErrorException,
   )
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to