core/homeassistant/util/yaml/objects.py

14 lines
238 B
Python
Raw Normal View History

"""Custom yaml object types."""
class NodeListClass(list):
"""Wrapper class to be able to add attributes on a list."""
pass
class NodeStrClass(str):
"""Wrapper class to be able to add attributes on a string."""
pass