comparison env/lib/python3.7/site-packages/ruamel/yaml/configobjwalker.py @ 0:26e78fe6e8c4 draft

"planemo upload commit c699937486c35866861690329de38ec1a5d9f783"
author shellac
date Sat, 02 May 2020 07:14:21 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:26e78fe6e8c4
1 # coding: utf-8
2
3 import warnings
4
5 from ruamel.yaml.util import configobj_walker as new_configobj_walker
6
7 if False: # MYPY
8 from typing import Any # NOQA
9
10
11 def configobj_walker(cfg):
12 # type: (Any) -> Any
13 warnings.warn('configobj_walker has moved to ruamel.yaml.util, please update your code')
14 return new_configobj_walker(cfg)