Skip to content

Commit

Permalink
fix: execstack
Browse files Browse the repository at this point in the history
  • Loading branch information
chidiwilliams committed Jan 5, 2024
1 parent 6a01db7 commit 0f8ac9c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion buzz/store/keyring_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def get_password(self, key: Key) -> str:
return ""
return password
except (KeyringLocked, KeyringError) as exc:
logging.error("Unable to read from keyring: %s", exc)
logging.warn("Unable to read from keyring: %s", exc)

Check warning on line 21 in buzz/store/keyring_store.py

View check run for this annotation

Codecov / codecov/patch

buzz/store/keyring_store.py#L21

Added line #L21 was not covered by tests
return ""

def set_password(self, username: Key, password: str) -> None:
Expand Down
1 change: 1 addition & 0 deletions tests/widgets/file_transcriber_widget_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ def test_should_set_window_title(self, qtbot: QtBot):
default_output_file_name="",
)
qtbot.add_widget(widget)
print(widget.windowTitle())
assert widget.windowTitle() == "whisper-french.mp3"

def test_should_emit_triggered_event(self, qtbot: QtBot):
Expand Down

0 comments on commit 0f8ac9c

Please sign in to comment.