Skip to content

Commit

Permalink
fix: use GLib.Error instead of GLib.GError
Browse files Browse the repository at this point in the history
  • Loading branch information
linkfrg committed Feb 11, 2025
1 parent 77185fc commit 866e8ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ignis/services/system_tray/item.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def __on_proxy_initialized(self, proxy: DBusProxy) -> None:

def __sync_property(self, py_name: str) -> None:
def callback(value):
if isinstance(value, GLib.GError):
if isinstance(value, GLib.Error):
return

setattr(self, f"_{py_name}", value)
Expand Down

0 comments on commit 866e8ff

Please sign in to comment.