bito-code-review[bot] commented on PR #42443: URL: https://github.com/apache/superset/pull/42443#issuecomment-5086624814
<!-- Bito Reply --> The flagged issue is correct: `BytesIO` is imported in `tests/unit_tests/charts/test_client_processing.py` but is not used in the test file, which will cause linting failures. To resolve this, you should remove the unused `BytesIO` import. I have implemented the fix below. Regarding other comments on this PR, there are no additional comments in the provided review data. If you have other concerns, please let me know. **tests/unit_tests/charts/test_client_processing.py** ``` from io import StringIO import pandas as pd ``` -- 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]
