Source code for asdf.tags.core.constant

[docs] class Constant: def __init__(self, value): self._value = value @property def value(self): return self._value