Skip to content

Commit d1a9896

Browse files
authored
Fixed line length issue
1 parent f45339b commit d1a9896

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +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:", style=wx.DD_DEFAULT_STYLE)
120+
dlg = wx.DirDialog(self, "Choose a directory:",
121+
style=wx.DD_DEFAULT_STYLE)
121122
if dlg.ShowModal() == wx.ID_OK:
122123
self.panel.update_mp3_listing(dlg.GetPath())
123124
dlg.Destroy()

0 commit comments

Comments
 (0)