From 03f08159b45f4f9cf44fa7a039309d18ee9f7bfc Mon Sep 17 00:00:00 2001 From: TPD94 <39639333+TPD94@users.noreply.github.com> Date: Mon, 29 Sep 2025 21:01:55 -0400 Subject: [PATCH] Update dash.py --- unshackle/core/manifests/dash.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unshackle/core/manifests/dash.py b/unshackle/core/manifests/dash.py index 67ef362..56fec08 100644 --- a/unshackle/core/manifests/dash.py +++ b/unshackle/core/manifests/dash.py @@ -254,7 +254,7 @@ class DASH: if not session: session = Session() elif not isinstance(session, (Session, CurlSession)): - raise TypeError(f"Expected session to be a {Session}, not {session!r}") + raise TypeError(f"Expected session to be a {Session} or {CurlSession}, not {session!r}") if proxy: session.proxies.update({"all": proxy})