From 372619d73df0dcb0849e243c7eb0b6c32f288353 Mon Sep 17 00:00:00 2001 From: Simon Lin Date: Sat, 8 Mar 2025 01:05:41 +1100 Subject: [PATCH] revert unstable --- py-polars/polars/io/database/_utils.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/py-polars/polars/io/database/_utils.py b/py-polars/polars/io/database/_utils.py index 8d2a521f8e29..7ad0563c9b1f 100644 --- a/py-polars/polars/io/database/_utils.py +++ b/py-polars/polars/io/database/_utils.py @@ -19,12 +19,6 @@ def _run_async(co: Coroutine[Any, Any, Any]) -> Any: import asyncio import polars._utils.nest_asyncio - from polars._utils.unstable import issue_unstable_warning - - issue_unstable_warning( - "Use of asynchronous connections is currently considered unstable " - "and unexpected issues may arise; if this happens, please report them." - ) polars._utils.nest_asyncio.apply() # type: ignore[attr-defined] return asyncio.run(co)