Skip to content

Commit

Permalink
style(oomox_plugin): annotate finals
Browse files Browse the repository at this point in the history
  • Loading branch information
actionless committed Jun 16, 2024
1 parent 2d1a2ef commit 4d99b2e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions oomox_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 4d99b2e

Please sign in to comment.