From 7170ae3a67b3da02018a7e11af623f2cbef47e28 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sat, 2 Nov 2013 23:14:32 +0100 Subject: [PATCH] flow/actor: Record.connect no longer takes kwargs --- migen/flow/actor.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/migen/flow/actor.py b/migen/flow/actor.py index 279182e7..a8388e20 100644 --- a/migen/flow/actor.py +++ b/migen/flow/actor.py @@ -22,12 +22,12 @@ class _Endpoint(Record): Record.__init__(self, full_layout) class Source(_Endpoint): - def connect(self, sink, **kwargs): - return Record.connect(self, sink, **kwargs) + def connect(self, sink): + return Record.connect(self, sink) class Sink(_Endpoint): - def connect(self, source, **kwargs): - return source.connect(self, **kwargs) + def connect(self, source): + return source.connect(self) def get_endpoints(obj, filt=_Endpoint): if hasattr(obj, "get_endpoints") and callable(obj.get_endpoints): -- 2.30.2