From 3763f28ae4eab549a444a2921923138d1238a098 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Wed, 1 Jan 2025 17:36:15 +0100 Subject: [PATCH] tox fixes --- radicale/tests/test_auth.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/radicale/tests/test_auth.py b/radicale/tests/test_auth.py index 23042b20..f2ba577b 100644 --- a/radicale/tests/test_auth.py +++ b/radicale/tests/test_auth.py @@ -23,12 +23,12 @@ Radicale tests with simple requests and authentication. """ import base64 +import logging import os import sys from typing import Iterable, Tuple, Union import pytest -import logging from radicale import xmlutils from radicale.tests import BaseTest @@ -139,7 +139,7 @@ class TestBaseAuthRequests(BaseTest): # detection of broken htpasswd file entries def test_htpasswd_broken(self) -> None: - for userpass in ["tmp:", ":tmp" ]: + for userpass in ["tmp:", ":tmp"]: try: self._test_htpasswd("plain", userpass) except RuntimeError: