From c055210ed74c5a9c794f15bee2936ea863cce7a5 Mon Sep 17 00:00:00 2001 From: Daniel Vaz Gaspar Date: Thu, 9 May 2024 14:44:24 +0100 Subject: [PATCH] fix: type annotation breaking on py3.9 (#28396) --- 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 89a1413b74eab..46144ec019402 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