We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e6c051 commit 454f57bCopy full SHA for 454f57b
1 file changed
app/integrations/clients/prefect/__init__.py
@@ -7,3 +7,14 @@
7
)
8
9
__all__ = ["PrefectClient", "PrefectConfig", "make_prefect_client"]
10
+# Proxy for backward compatibility
11
+from app.services.prefect.client import PrefectClient # noqa: F401
12
+
13
+import warnings
14
15
+warnings.warn(
16
+ "app.integrations.clients.prefect is deprecated. "
17
+ "Please use app.services.prefect instead.",
18
+ DeprecationWarning,
19
+ stacklevel=2
20
+)
0 commit comments