From 4d99b2efa0db34c9baafe7fc11efdd9eb5728fb1 Mon Sep 17 00:00:00 2001 From: actionless Date: Sun, 16 Jun 2024 17:34:01 +0200 Subject: [PATCH] style(oomox_plugin): annotate finals --- oomox_plugin.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/oomox_plugin.py b/oomox_plugin.py index 175e104..5851d9a 100644 --- a/oomox_plugin.py +++ b/oomox_plugin.py @@ -19,12 +19,12 @@ ) -OPTION_SPOTIFY_PATH = "spotify_path" -OPTION_FONT_NAME = "font_name" -OPTION_FONT_OPTIONS = "font_options" -VALUE_FONT_DEFAULT = "default" -VALUE_FONT_NORMALIZE = "normalize" -VALUE_FONT_CUSTOM = "custom" +OPTION_SPOTIFY_PATH: "Final" = "spotify_path" +OPTION_FONT_NAME: "Final" = "font_name" +OPTION_FONT_OPTIONS: "Final" = "font_options" +VALUE_FONT_DEFAULT: "Final" = "default" +VALUE_FONT_NORMALIZE: "Final" = "normalize" +VALUE_FONT_CUSTOM: "Final" = "custom" class SpotifyExportDialog(FileBasedExportDialog):