kids-first / kf-api-dataservice

:file_cabinet: Primary API for interacting with the Kids First data
http://kf-api-dataservice.kidsfirstdrc.org
Apache License 2.0
5 stars 3 forks source link

Specify PyYAML loader #530

Open dankolbman opened 5 years ago

dankolbman commented 5 years ago

There are a lot of these warnings telling us about a deprecated function: YAMLLoadWarning: calling yaml.load() without Loader=... is deprecated, as the default Loader is unsafe. Please read https://msg.pyyaml.org/load for full details.

We may either specify Loader=yaml.FullLoader in the load() function or try replacing it with safe_load().

dankolbman commented 5 years ago

See the page referenced for more information.