bito-code-review[bot] commented on PR #41250:
URL: https://github.com/apache/superset/pull/41250#issuecomment-4753551942
<!-- Bito Reply -->
The flagged issue regarding missing type hints in the newly added test
method is correct. To resolve this, you should update the method signature to
include explicit type hints for all parameters and the return type (e.g., `->
None`).
Since the file `tests/unit_tests/utils/webdriver_test.py` is not present in
the provided PR diff, I cannot implement the fix directly. Please apply the
following pattern to the test method in that file:
```python
def test_your_method_name(patched_arg: PatchedType) -> None:
# implementation
```
Regarding other comments, there are no additional review comments available
in the provided PR context to check.
--
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]