chore: explicitly return False instead of GLib macro

This commit is contained in:
aclist 2026-04-29 01:04:22 +09:00
parent 4377f9de7c
commit d6ef55a3b3
2 changed files with 7 additions and 5 deletions

View File

@ -54,7 +54,9 @@ def enum_to_key(enum: Preferences) -> str:
def get_client_index(client: str) -> int:
if client == STEAM_CMD:
return 0
if client == FLATPAK_RUN_CMD:
elif client == FLATPAK_RUN_CMD:
return 1
if client == FLATPAK_SANDBOX:
elif client == FLATPAK_SANDBOX:
return 2
else:
return 0

View File

@ -1,4 +1,4 @@
from typing import TYPE_CHECKING
from typing import Literal, TYPE_CHECKING
from dzgui.const.enum import ServerTab
from dzgui.util.clip import copy_clipboard
@ -72,10 +72,10 @@ class RightPanel(Gtk.Box):
self.filters_vbox.set_sensitive(state)
def _on_version_clicked(self, widget: Gtk.EventBox, event: Gdk.EventButton) -> None:
def revert() -> GLib.SOURCE_REMOVE:
def revert() -> Literal[False]:
self.copying = False
self.version_label.set_text(version)
return GLib.SOURCE_REMOVE
return False
if self.copying:
return