Skip to content

Commit

Permalink
Tinyseed import/export bugfix - lack of label would make it crash
Browse files Browse the repository at this point in the history
on attempting to draw a "None" object on screen
  • Loading branch information
odudex committed Aug 8, 2024
1 parent e5f9cb2 commit d2ab267
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/krux/pages/tiny_seed.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d2ab267

Please sign in to comment.