mirror of
https://github.com/aclist/dztui.git
synced 2026-08-26 01:37:18 +02:00
chore: deprecation warnings
This commit is contained in:
parent
93c5acb66d
commit
0306cc4380
@ -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()
|
||||
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user