diff --git a/plugins/eddn.py b/plugins/eddn.py index c8bca92a5..7ce79e833 100644 --- a/plugins/eddn.py +++ b/plugins/eddn.py @@ -2089,7 +2089,7 @@ def plugin_prefs(parent, cmdr: str, is_beta: bool) -> Frame: """ PADX = 10 # noqa: N806 BUTTONX = 12 # noqa: N806 # indent Checkbuttons and Radiobuttons - PADY = 2 + PADY = 2 # noqa: N806 if prefsVersion.shouldSetDefaults('0.0.0.0', not bool(config.get_int('output'))): output: int = config.OUT_EDDN_SEND_STATION_DATA | config.OUT_EDDN_SEND_NON_STATION # default settings diff --git a/plugins/inara.py b/plugins/inara.py index b3446b622..da9e47b42 100644 --- a/plugins/inara.py +++ b/plugins/inara.py @@ -247,11 +247,11 @@ def toggle_password_visibility(): def plugin_prefs(parent: ttk.Notebook, cmdr: str, is_beta: bool) -> tk.Frame: """Plugin Preferences UI hook.""" - PADX = 10 - BUTTONX = 12 # indent Checkbuttons and Radiobuttons - PADY = 2 # close spacing - SEPY = 10 # seperator line spacing - cur_row = 0 + PADX = 10 # noqa: N806 + BUTTONX = 12 # noqa: N806 # indent Checkbuttons and Radiobuttons + PADY = 2 # noqa: N806 # close spacing + SEPY = 10 # noqa: N806 # seperator line spacing + cur_row = 0 # noqa: N806 frame = nb.Frame(parent) frame.columnconfigure(1, weight=1)