mirror of
https://github.com/EvolutionAPI/evolution-client-python.git
synced 2025-07-14 01:41:23 -06:00
8 lines
213 B
Python
8 lines
213 B
Python
"""The module containing the code for ForgetfulCookieJar."""
|
|
from requests.cookies import RequestsCookieJar
|
|
|
|
|
|
class ForgetfulCookieJar(RequestsCookieJar):
|
|
def set_cookie(self, *args, **kwargs):
|
|
return
|