Skip to content

Commit

Permalink
Removal constant from find_attributes_hidden_file
Browse files Browse the repository at this point in the history
  • Loading branch information
53v3n3d4 committed Jan 29, 2025
1 parent 5f1cc94 commit f13d1e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/zukan_icon_theme/helpers/search_themes.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
ST_COLOR_PALETTE_DICT,
)
from ..utils.zukan_paths import (
PKG_ZUKAN_ICON_THEME_FOLDER,
# PKG_ZUKAN_ICON_THEME_FOLDER,
USER_UI_SETTINGS_FILE,
)

Expand Down Expand Up @@ -291,7 +291,7 @@ def find_attributes_hidden_file(
hidden_theme_list = sublime.find_resources(theme_content['extends'])
# Exclude Zukan created themes, important for Rebuild Files command.
hidden_theme_name = [
h for h in hidden_theme_list if not h.startswith(PKG_ZUKAN_ICON_THEME_FOLDER)
h for h in hidden_theme_list if not h.startswith('Packages/Zukan Icon Theme')
]
for t in hidden_theme_name:
hidden_theme_content = sublime.decode_value(sublime.load_resource(t))
Expand Down

0 comments on commit f13d1e7

Please sign in to comment.