From c541c60aa9b34b51dfe0e4ed12c9a75fdb57f0bb Mon Sep 17 00:00:00 2001 From: Micke Nordin Date: Fri, 9 Jul 2021 13:33:02 +0200 Subject: [PATCH] Refactor: sorting methods, and make some things clearer --- src/main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.py b/src/main.py index a912028..a491e79 100755 --- a/src/main.py +++ b/src/main.py @@ -92,6 +92,7 @@ class PassUi(wx.Frame): @redraw def add_init(self): + """add_init""" select_label: str = "Select GPG Key" if self.gpg_key: label: wx.StaticText = wx.StaticText(self.pnl, label="Selected GPG key:") @@ -105,7 +106,7 @@ class PassUi(wx.Frame): lambda event: self.gpg_button_clicked(), gpg_btn) if self.gpg_key: init_btn: wx.Button = wx.Button(self.pnl, label="Init Local Password Store") - git_btn: wx.Button = wx.Button(self.pnl, label="Init Git Password Store") + git_btn: wx.Button = wx.Button(self.pnl, label="Clone Remote Password Store From Git") self.sizer.Add(init_btn, 0, wx.EXPAND) # pylint: disable=no-member self.sizer.Add(git_btn, 0, wx.EXPAND) # pylint: disable=no-member self.Bind(wx.EVT_BUTTON,