diff --git a/prefs.py b/prefs.py index 444370893..cc979d88d 100644 --- a/prefs.py +++ b/prefs.py @@ -927,7 +927,9 @@ def __setup_plugin_tab(self, notebook: ttk.Notebook) -> None: # noqa: CCR001 # Section heading in settings # LANG: Label for location of third-party plugins folder - nb.Label(plugins_frame, text=_('Plugins folder') + ':').grid(padx=self.PADX, pady=(0, self.PADY), sticky=tk.W, row=row.get()) + nb.Label(plugins_frame, text=_('Plugins folder') + ':').grid( + padx=self.PADX, pady=(0, self.PADY), sticky=tk.W, row=row.get() + ) plugdirentry = nb.Entry(plugins_frame, justify=tk.LEFT) self.displaypath(plugdir, plugdirentry)