From 5cc87ecdcefb7682ef1a6e1e02594b382b7f4ad7 Mon Sep 17 00:00:00 2001 From: Peter Jensen Date: Tue, 28 Mar 2017 13:18:39 +0200 Subject: [PATCH] trezor.ui: fix container --- src/trezor/ui/container.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/trezor/ui/container.py b/src/trezor/ui/container.py index 422c992e..1bc77fbb 100644 --- a/src/trezor/ui/container.py +++ b/src/trezor/ui/container.py @@ -1,5 +1,7 @@ +from trezor.ui import Widget -class Container: + +class Container(Widget): def __init__(self, *children): self.children = children