Skip to content

Commit ef9a614

Browse files
committed
ignore return type for cookies.set
1 parent 5b924b8 commit ef9a614

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/scrape.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def scrape(
1414
) -> dict[str, dict[str, Any]]:
1515

1616
session = Session()
17-
session.cookies.set("shib_idp_session", config.shib_idp_session_cookie)
17+
session.cookies.set("shib_idp_session", config.shib_idp_session_cookie) # type: ignore
1818

1919
data: dict[str, dict[str, Any]] = {}
2020

0 commit comments

Comments
 (0)