From aefc20693a56ed9615c0f35cefb1e48946217281 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Pleva=C4=8D?= Date: Wed, 15 Jan 2025 19:28:29 +0100 Subject: [PATCH] Full adder missing import --- .../one_bit_components/two_input_one_bit_components.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ariths_gen/one_bit_circuits/one_bit_components/two_input_one_bit_components.py b/ariths_gen/one_bit_circuits/one_bit_components/two_input_one_bit_components.py index 30c9e5a..aa16199 100644 --- a/ariths_gen/one_bit_circuits/one_bit_components/two_input_one_bit_components.py +++ b/ariths_gen/one_bit_circuits/one_bit_components/two_input_one_bit_components.py @@ -1,4 +1,5 @@ -from ariths_gen.core.one_bit_circuits import TwoInputOneBitCircuit, FullAdder +from ariths_gen.core.one_bit_circuits import TwoInputOneBitCircuit +from .three_input_one_bit_components import FullAdder from ariths_gen.one_bit_circuits.logic_gates import AndGate, NandGate, OrGate, NorGate, NotGate from ariths_gen.one_bit_circuits import Maji from ariths_gen.wire_components import Wire, Bus