Mercurial > repos > shellac > sam_consensus_v3
comparison env/lib/python3.9/site-packages/ruamel/yaml/configobjwalker.py @ 0:4f3585e2f14b draft default tip
"planemo upload commit 60cee0fc7c0cda8592644e1aad72851dec82c959"
author | shellac |
---|---|
date | Mon, 22 Mar 2021 18:12:50 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4f3585e2f14b |
---|---|
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) |