Spaces:
Sleeping
Sleeping
File size: 277 Bytes
926675f |
1 2 3 4 5 6 7 8 9 10 11 |
# Basic Node to be inherited from.
class Node:
def __init__(self, name, input_type, output_type):
self.name = name
self.input_type = input_type
self.output_type = output_type
def run (self, input, log=False):
raise NotImplementedError
|