betodealmeida commented on code in PR #30721: URL: https://github.com/apache/superset/pull/30721#discussion_r1817292703
########## superset/datasets/api.py: ########## @@ -18,11 +18,16 @@ import logging from datetime import datetime from io import BytesIO -from typing import Any +from typing import Any, Optional Review Comment: Hint: you can do `from __future__ import annotations` and then use `a | None` instead of `Optional[a]`. -- 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]
