edge-connect icon indicating copy to clipboard operation
edge-connect copied to clipboard

YAMLLoadWarning

Open ArtScanner opened this issue 4 years ago • 1 comments

edge-connect-master\src\config.py:8: YAMLLoadWarning: calling yaml.load() without Loader=... is deprecated, as the default Loader is unsafe. Please read https://msg.pyyaml.org/load for full details. self._dict = yaml.load(self._yaml)

ArtScanner avatar May 19 '20 16:05 ArtScanner

just refer to the that link, and you will find self._dict = yaml.safe_load(self._yaml) fixes this.

cats-food avatar Mar 22 '21 02:03 cats-food