Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

Commit

Permalink
fix: fix errro
Browse files Browse the repository at this point in the history
  • Loading branch information
0xMRTT committed Sep 2, 2022
1 parent d33b6ad commit f9914ce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/plugins_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,15 @@
from .modules.utils import buglog
from .plugin_row import GradiencePluginRow
from .plugins.hookspec import GradienceHooks
from .constants import app_id


class GradiencePluginsList:
def __init__(self, win):

self.win = win

self.plugins = win.settings.get_list("plugins-enabled")
self.plugins = Gio.Settings(app_id).get_list("plugins-enabled")
buglog(self.plugins)

self.pm = pluggy.PluginManager("gradience")
Expand Down

0 comments on commit f9914ce

Please sign in to comment.