From b4c511a892d362001f2070980d48e408da50b884 Mon Sep 17 00:00:00 2001 From: Carlo Piovesan Date: Tue, 30 Jan 2024 20:47:44 +0100 Subject: [PATCH] Remove Python function signature (in test) that currently is broken in 3.7 and 3.8 CI --- tools/pythonpkg/tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/pythonpkg/tests/conftest.py b/tools/pythonpkg/tests/conftest.py index fdf0cc962fe..998e1c56163 100644 --- a/tools/pythonpkg/tests/conftest.py +++ b/tools/pythonpkg/tests/conftest.py @@ -68,7 +68,7 @@ def duckdb_empty_cursor(request): return cursor -def getTimeSeriesData(nper=None, freq: "Frequency" = "B") -> dict[str, "Series"]: +def getTimeSeriesData(nper=None, freq: "Frequency" = "B"): from pandas import DatetimeIndex, bdate_range, Series from datetime import datetime from pandas._typing import Frequency