mirror of
https://github.com/aclist/dztui.git
synced 2026-08-27 02:07:18 +02:00
chore: explicitly return False instead of GLib macro
This commit is contained in:
parent
4377f9de7c
commit
d6ef55a3b3
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user