This is an automated email from the ASF dual-hosted git repository. michaelsmolina pushed a commit to branch 4.0 in repository https://gitbox.apache.org/repos/asf/superset.git
commit 8bf84e5bf6842fe49ea08ce3cc14042f9efba619 Author: Daniel Vaz Gaspar <[email protected]> AuthorDate: Thu May 9 14:44:24 2024 +0100 fix: type annotation breaking on py3.9 (#28396) (cherry picked from commit b224b8331ab7ce804be358675c20c340522663c3) --- superset/utils/pandas_postprocessing/contribution.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/superset/utils/pandas_postprocessing/contribution.py b/superset/utils/pandas_postprocessing/contribution.py index 89a1413b74..46144ec019 100644 --- a/superset/utils/pandas_postprocessing/contribution.py +++ b/superset/utils/pandas_postprocessing/contribution.py @@ -14,6 +14,8 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +from __future__ import annotations + from decimal import Decimal from typing import Any
