From bd4d1c417a0b1931ba3e83a404f3f93b4218ca54 Mon Sep 17 00:00:00 2001 From: johnthagen Date: Mon, 9 Dec 2019 07:26:42 -0500 Subject: [PATCH] Fix black error --- skidl/Bus.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skidl/Bus.py b/skidl/Bus.py index b20a1de5..1c0b131f 100644 --- a/skidl/Bus.py +++ b/skidl/Bus.py @@ -121,8 +121,8 @@ def __init__(self, name, *args, **attribs): # Add the bus to the circuit. self.circuit = ( - None - ) # Bus won't get added if it's already seen as part of circuit. + None # Bus won't get added if it's already seen as part of circuit. + ) attribs[ "circuit" ] += self # Add bus to circuit. This also sets self.circuit again.