Skip to content

Instantly share code, notes, and snippets.

@d3lm
Last active August 7, 2019 13:10
Show Gist options
  • Save d3lm/53c3c1aafbdf147966b35e15851a077c to your computer and use it in GitHub Desktop.
Save d3lm/53c3c1aafbdf147966b35e15851a077c to your computer and use it in GitHub Desktop.
class Graph():
def __init__(self):
self.operations = []
self.placeholders = []
self.variables = []
self.constants = []
def as_default(self):
global _default_graph
_default_graph = self
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment