edge-connect
edge-connect copied to clipboard
YAMLLoadWarning
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)
just refer to the that link, and you will find self._dict = yaml.safe_load(self._yaml) fixes this.