chore: pyupgrade --py38-plus

This commit is contained in:
Mathieu Dupuy 2024-08-06 13:23:44 +02:00
parent 45f0b8809b
commit 34b449f27f
No known key found for this signature in database
GPG key ID: 08C1D4F32506B23A
4 changed files with 14 additions and 25 deletions

View file

@ -16,18 +16,12 @@
# You should have received a copy of the GNU General Public License
# along with Radicale. If not, see <http://www.gnu.org/licenses/>.
import sys
from importlib import import_module
from importlib import import_module, metadata
from typing import Callable, Sequence, Type, TypeVar, Union
from radicale import config
from radicale.log import logger
if sys.version_info < (3, 8):
import pkg_resources
else:
from importlib import metadata
_T_co = TypeVar("_T_co", covariant=True)
@ -52,6 +46,4 @@ def load_plugin(internal_types: Sequence[str], module_name: str,
def package_version(name):
if sys.version_info < (3, 8):
return pkg_resources.get_distribution(name).version
return metadata.version(name)