cq: Use union operator
This commit is contained in:
@@ -16,7 +16,6 @@
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import Any
|
||||
from typing import Optional
|
||||
|
||||
from collections import UserDict
|
||||
from dataclasses import dataclass
|
||||
@@ -26,8 +25,8 @@ from gajim.plugins.plugins_i18n import _
|
||||
|
||||
@dataclass
|
||||
class ClientData:
|
||||
default: Optional[tuple[str, str]] = None
|
||||
variations: Optional[dict[str, str]] = None
|
||||
default: tuple[str, str] | None = None
|
||||
variations: dict[str, str] | None = None
|
||||
|
||||
|
||||
def get_variations(client_name: str) -> list[str]:
|
||||
|
||||
@@ -16,8 +16,6 @@
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import cast
|
||||
from typing import Optional
|
||||
from typing import Union
|
||||
|
||||
import logging
|
||||
from pathlib import Path
|
||||
@@ -64,17 +62,17 @@ class ClientsIconsPlugin(GajimPlugin):
|
||||
_icon_theme.append_search_path(str(Path(__file__).parent))
|
||||
|
||||
@staticmethod
|
||||
def _get_client_identity_name(disco_info: DiscoInfo) -> Optional[str]:
|
||||
def _get_client_identity_name(disco_info: DiscoInfo) -> str | None:
|
||||
for identity in disco_info.identities:
|
||||
if identity.category == 'client':
|
||||
return identity.name
|
||||
return None
|
||||
|
||||
def _get_image_and_client_name(self,
|
||||
contact: Union[
|
||||
GroupchatParticipant, ResourceContact],
|
||||
contact:
|
||||
GroupchatParticipant | ResourceContact,
|
||||
_widget: Gtk.Widget
|
||||
) -> Optional[tuple[Gtk.Image, str]]:
|
||||
) -> tuple[Gtk.Image, str] | None:
|
||||
|
||||
disco_info = app.storage.cache.get_last_disco_info(contact.jid)
|
||||
if disco_info is None:
|
||||
|
||||
@@ -14,8 +14,6 @@
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with OpenPGP Gajim Plugin. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
from typing import Optional
|
||||
|
||||
import logging
|
||||
|
||||
from nbxmpp.protocol import JID
|
||||
@@ -46,7 +44,7 @@ class KeyringItem:
|
||||
return False
|
||||
return jid == self.jid
|
||||
|
||||
def _get_uid(self) -> Optional[str]:
|
||||
def _get_uid(self) -> str | None:
|
||||
for uid in self._key.uids:
|
||||
try:
|
||||
return parse_uid(uid.uid)
|
||||
|
||||
@@ -14,8 +14,6 @@
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with OpenPGP Gajim Plugin. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
from typing import Optional
|
||||
|
||||
import logging
|
||||
|
||||
import gnupg
|
||||
@@ -53,7 +51,7 @@ class KeyringItem:
|
||||
def keyid(self) -> str:
|
||||
return self._key['keyid']
|
||||
|
||||
def _get_uid(self) -> Optional[str]:
|
||||
def _get_uid(self) -> str | None:
|
||||
for uid in self._key['uids']:
|
||||
try:
|
||||
return parse_uid(uid)
|
||||
|
||||
@@ -16,7 +16,6 @@ from __future__ import annotations
|
||||
|
||||
from typing import Any
|
||||
from typing import Callable
|
||||
from typing import Optional
|
||||
from typing import TYPE_CHECKING
|
||||
|
||||
import logging
|
||||
@@ -39,7 +38,7 @@ def log_result(func: Callable[..., Any]) -> Callable[..., bool]:
|
||||
|
||||
@dataclass
|
||||
class RuleResult:
|
||||
show_notification: Optional[bool] = None
|
||||
command: Optional[str] = None
|
||||
sound: Optional[bool] = None
|
||||
sound_file: Optional[str] = None
|
||||
show_notification: bool | None = None
|
||||
command: str | None = None
|
||||
sound: bool | None = None
|
||||
sound_file: str | None = None
|
||||
|
||||
Reference in New Issue
Block a user