You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bazarr/libs/dynaconf/vendor/ruamel/yaml/anchor.py

6 lines
322 B

if False:from typing import Any,Dict,Optional,List,Union,Optional,Iterator
anchor_attrib='_yaml_anchor'
class Anchor:
__slots__='value','always_dump';attrib=anchor_attrib
def __init__(A):A.value=None;A.always_dump=False
def __repr__(A):B=', (always dump)'if A.always_dump else'';return'Anchor({!r}{})'.format(A.value,B)