Browse Source

Defining a specific YAML loader

As per using one of the "'sugar' methods" mentioned in https://github.com/yaml/pyyaml/wiki/PyYAML-yaml.load(input)-Deprecation#how-to-disable-the-warning
pull/155/head
One-Nub 6 years ago
committed by GitHub
parent
commit
beb29f6d55
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      disco/util/serializer.py

4
disco/util/serializer.py

@ -21,8 +21,8 @@ class Serializer(object):
@staticmethod
def yaml():
from yaml import load, dump
return (load, dump)
from yaml import full_load, dump
return (full_load, dump)
@staticmethod
def pickle():

Loading…
Cancel
Save