Skip to content

Instantly share code, notes, and snippets.

@d3lm
Last active August 7, 2019 13:09
Show Gist options
  • Save d3lm/e3c212c8311ab6c8bd09fa4acf1b7f1f to your computer and use it in GitHub Desktop.
Save d3lm/e3c212c8311ab6c8bd09fa4acf1b7f1f to your computer and use it in GitHub Desktop.
class Constant():
def __init__(self, value=None):
self.__value = value
_default_graph.constants.append(self)
@property
def value(self):
return self.__value
@value.setter
def value(self, value):
raise ValueError("Cannot reassign value.")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment