OpenRAM/compiler/drc/drc_value.py

18 lines
267 B
Python
Raw Normal View History

class drc_value():
"""
A single DRC value.
"""
def __init__(self, value):
self.value = value
def __call__(self, *args):
"""
Return the value.
"""
return self.value