bito-code-review[bot] commented on PR #42082: URL: https://github.com/apache/superset/pull/42082#issuecomment-4979531302
<!-- Bito Reply --> The suggestion to add an explicit type annotation to the `_SOURCE` variable is correct, as it improves code clarity and adheres to standard Python typing practices. You can resolve this by updating the variable declaration in `tests/unit_tests/models/test_time_comparison_offset.py` to include the `str` type hint. There are no other review comments in this pull request to address. **tests/unit_tests/models/test_time_comparison_offset.py** ``` _SOURCE: str = inspect.getsource(ExploreMixin.processing_time_offsets) ``` -- 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]
