Skip to content

Commit ca5f822

Browse files
authored
Fixed black's auto-fix issue
1 parent d1a9896 commit ca5f822

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build-a-gui-with-wxpython/mp3_tag_editor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@ def create_menu(self):
117117
self.SetMenuBar(menu_bar)
118118

119119
def on_open_folder(self, event):
120-
dlg = wx.DirDialog(self, "Choose a directory:",
121-
style=wx.DD_DEFAULT_STYLE)
120+
title = "Choose a directory:"
121+
dlg = wx.DirDialog(self, title, style=wx.DD_DEFAULT_STYLE)
122122
if dlg.ShowModal() == wx.ID_OK:
123123
self.panel.update_mp3_listing(dlg.GetPath())
124124
dlg.Destroy()

0 commit comments

Comments
 (0)