From d2ab267abcfd152526235b20a9380d5c8b5218a8 Mon Sep 17 00:00:00 2001 From: odudex Date: Thu, 8 Aug 2024 00:00:38 -0300 Subject: [PATCH] Tinyseed import/export bugfix - lack of label would make it crash on attempting to draw a "None" object on screen --- src/krux/pages/tiny_seed.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/krux/pages/tiny_seed.py b/src/krux/pages/tiny_seed.py index 836af42a..8ae31396 100644 --- a/src/krux/pages/tiny_seed.py +++ b/src/krux/pages/tiny_seed.py @@ -56,7 +56,7 @@ class TinySeed(Page): """Class for handling Tinyseed fomat""" - def __init__(self, ctx, label=None): + def __init__(self, ctx, label="Tiny Seed"): super().__init__(ctx, None) self.ctx = ctx self.label = label