From 77c9c8818f9ed19bb71172048e1d81f634a5a5e6 Mon Sep 17 00:00:00 2001 From: wurstsalat Date: Sun, 11 Jun 2023 12:39:01 +0200 Subject: cq: Use union operator --- openpgp/backend/gpgme.py | 4 +--- openpgp/backend/pygpg.py | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) (limited to 'openpgp') diff --git a/openpgp/backend/gpgme.py b/openpgp/backend/gpgme.py index 54b8619..d485742 100644 --- a/openpgp/backend/gpgme.py +++ b/openpgp/backend/gpgme.py @@ -14,8 +14,6 @@ # You should have received a copy of the GNU General Public License # along with OpenPGP Gajim Plugin. If not, see . -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) diff --git a/openpgp/backend/pygpg.py b/openpgp/backend/pygpg.py index 009114f..aaf1fa9 100644 --- a/openpgp/backend/pygpg.py +++ b/openpgp/backend/pygpg.py @@ -14,8 +14,6 @@ # You should have received a copy of the GNU General Public License # along with OpenPGP Gajim Plugin. If not, see . -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) -- cgit v1.2.3