Skip to content

Commit

Permalink
Minor cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
kdmukai committed Nov 5, 2024
1 parent 5472add commit 7ee89c8
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 11 deletions.
2 changes: 0 additions & 2 deletions src/seedsigner/gui/screens/seed_screens.py
Original file line number Diff line number Diff line change
Expand Up @@ -1106,8 +1106,6 @@ def __post_init__(self):
self.is_bottom_list = True
super().__post_init__()

print(self)

self.components.append(IconTextLine(
# TRANSLATOR_NOTE: Refers to the SeedQR type: Standard or Compact
label_text=_("Standard"),
Expand Down
2 changes: 0 additions & 2 deletions src/seedsigner/views/seed_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -1430,8 +1430,6 @@ def run(self):

button_data = [STANDARD, COMPACT]

print(f"button_data: {button_data}")

selected_menu_num = seed_screens.SeedTranscribeSeedQRFormatScreen(
title=_("SeedQR Format"),
button_data=button_data,
Expand Down
2 changes: 1 addition & 1 deletion tests/screenshot_generator/generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@

from .utils import ScreenshotComplete, ScreenshotRenderer

# Ignore Pillow 10 DeprecationWarnings "use getbbox() or getlength() instead of getsize()"
import warnings; warnings.warn = lambda *args, **kwargs: None


Expand All @@ -53,6 +52,7 @@ def test_generate_all(locale, target_locale):
"""
if target_locale and locale != target_locale:
pytest.skip(f"Skipping {locale}")

generate_screenshots(locale)


Expand Down
6 changes: 0 additions & 6 deletions tests/test_bip85.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
import pytest
from unittest.mock import MagicMock
from seedsigner.models.seed import Seed
from embit import bip39

from seedsigner.models.settings import SettingsConstants



def test_derive_child_mnemonic():
Expand Down

0 comments on commit 7ee89c8

Please sign in to comment.