flow/actor/Endpoint: clean up __getattr__
This commit is contained in:
parent
37031e3a2f
commit
86abb253c8
|
@ -35,11 +35,8 @@ class _Endpoint(Record):
|
||||||
]
|
]
|
||||||
Record.__init__(self, endpoint_layout)
|
Record.__init__(self, endpoint_layout)
|
||||||
|
|
||||||
def __del__(self):
|
|
||||||
pass
|
|
||||||
|
|
||||||
def __getattr__(self, name):
|
def __getattr__(self, name):
|
||||||
return getattr(self.payload, name)
|
return getattr(object.__getattribute__(self, "payload"), name)
|
||||||
|
|
||||||
class Source(_Endpoint):
|
class Source(_Endpoint):
|
||||||
def connect(self, sink):
|
def connect(self, sink):
|
||||||
|
|
Loading…
Reference in New Issue