From f921e48648b1bae14bbd1a28c738faa98a563277 Mon Sep 17 00:00:00 2001 From: Unrud Date: Mon, 27 Sep 2021 17:22:37 +0200 Subject: [PATCH] Remove unused variable --- radicale/app/__init__.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/radicale/app/__init__.py b/radicale/app/__init__.py index c1bd0905..6bebf81c 100644 --- a/radicale/app/__init__.py +++ b/radicale/app/__init__.py @@ -34,8 +34,6 @@ import zlib from http import client from typing import Iterable, List, Mapping, Tuple, Union -import pkg_resources - from radicale import config, httputils, log, pathutils, types from radicale.app.base import ApplicationBase from radicale.app.delete import ApplicationPartDelete @@ -52,8 +50,6 @@ from radicale.app.put import ApplicationPartPut from radicale.app.report import ApplicationPartReport from radicale.log import logger -VERSION: str = pkg_resources.get_distribution("radicale").version - # Combination of types.WSGIStartResponse and WSGI application return value _IntermediateResponse = Tuple[str, List[Tuple[str, str]], Iterable[bytes]]