This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
19103b8
commit 3e1dea3
Showing
4 changed files
with
25 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
from . import commands | ||
|
||
def handle_quit_event(): | ||
def handle_quit_event() -> None: | ||
commands.quit_appplication() | ||
|
||
def handle_help_event(): | ||
def handle_help_event() -> None: | ||
commands.print_help_message() | ||
|
||
def handle_write_password_event(): | ||
def handle_write_password_event() -> None: | ||
commands.write_password() | ||
|
||
def handle_read_password_event(): | ||
def handle_read_password_event() -> None: | ||
commands.read_password() | ||
|
||
def handle_info_event(): | ||
def handle_info_event() -> None: | ||
commands.read_info() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters