chore: deprecation warnings

This commit is contained in:
aclist 2026-01-22 16:09:38 +09:00
parent 93c5acb66d
commit 0306cc4380
3 changed files with 6 additions and 10 deletions

View File

@ -2,6 +2,7 @@ import argparse
import logging
import os
import sys
import warnings
from typing import TYPE_CHECKING
@ -70,6 +71,8 @@ def main() -> None:
uninstall()
sys.exit(0)
if args.developers is True:
warnings.filterwarnings("default", category=DeprecationWarning)
version = get_version()
set_locale()

View File

@ -1,7 +1,7 @@
from warnings import deprecated
from typing import Self, Union, TYPE_CHECKING
from dzgui.const.enum import NotebookPage, Preferences, RowType
from dzgui.const.enum import NotebookPage, RowType
from dzgui.util import strings
import gi
@ -142,11 +142,4 @@ class Statusbar(Gtk.Grid):
@deprecated("use controller")
def format_metadata(self, row: "RowType") -> str:
prefix = row.dict["tooltip"]
if row == RowType.QUICK_CONNECT or row == RowType.CHNG_FAV:
label = self.controller.query_config(Preferences.FAV_LBL)
if len(label) < 1:
label = "unset"
return f"{prefix} ({label})"
else:
return prefix
return prefix

View File

@ -135,7 +135,7 @@ class ServerTreeView(TreeView):
continue
if title == "IP":
continue
label = Gtk.Label(title)
label = Gtk.Label(label=title)
pango = label.get_layout()
size = pango.get_pixel_size()
if size.width > 50: