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 2e056e6 commit 066d242
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions oomox_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ class PluginBase(OomoxImportPlugin, OomoxExportPlugin): # type: ignore[no-redef
Base16ThemeT = dict[str, str]


DEBUG = False
PLUGIN_DIR = os.path.dirname(os.path.realpath(__file__))
USER_BASE16_DIR = os.path.join(
DEBUG: "Final" = False
PLUGIN_DIR: "Final" = os.path.dirname(os.path.realpath(__file__))
USER_BASE16_DIR: "Final" = os.path.join(
USER_CONFIG_DIR, "base16/",
)
USER_BASE16_TEMPLATES_DIR = os.path.join(
USER_BASE16_TEMPLATES_DIR: "Final" = os.path.join(
USER_BASE16_DIR, "templates/",
)

Expand Down

0 comments on commit 066d242

Please sign in to comment.