You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Then Error happened:
Exception has occurred: ValueError
mutable default <class 'wechaty_puppet.schemas.puppet.PuppetOptions'> for field puppet_options is not allowed: use default_factory
File "D:\AI\DingDongBotPy\DingDongBot.py", line 15, in
from wechaty import Wechaty, Contact
ValueError: mutable default <class 'wechaty_puppet.schemas.puppet.PuppetOptions'> for field puppet_options is not allowed: use default_factory
how to solve it ?
The text was updated successfully, but these errors were encountered:
"""doc"""
import asyncio
import logging
from typing import Optional, Union
from wechaty_puppet import FileBox
from urllib.parse import urlparse
def get_host(url: str) -> (str, str, str):
parsed_url = urlparse(url)
return parsed_url.scheme, parsed_url.netloc, parsed_url.path
import urllib3
urllib3.get_host = get_host
from wechaty import Wechaty, Contact
Then Error happened:
Exception has occurred: ValueError
mutable default <class 'wechaty_puppet.schemas.puppet.PuppetOptions'> for field puppet_options is not allowed: use default_factory
File "D:\AI\DingDongBotPy\DingDongBot.py", line 15, in
from wechaty import Wechaty, Contact
ValueError: mutable default <class 'wechaty_puppet.schemas.puppet.PuppetOptions'> for field puppet_options is not allowed: use default_factory
how to solve it ?
The text was updated successfully, but these errors were encountered: