ID=75502624
- 错误
ValueError: dictionary update sequence element #0 has length 1; 2 is required
- 解决
import yaml
logging.config.dictConfig(yaml.load(open('logging.config', 'r'), yaml.FullLoader))
ValueError: dictionary update sequence element #0 has length 1; 2 is required
import yaml
logging.config.dictConfig(yaml.load(open('logging.config', 'r'), yaml.FullLoader))