Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'acme/tests/challenges_test.py')
-rw-r--r--acme/tests/challenges_test.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/acme/tests/challenges_test.py b/acme/tests/challenges_test.py
index 70371051c..22e67be3c 100644
--- a/acme/tests/challenges_test.py
+++ b/acme/tests/challenges_test.py
@@ -1,12 +1,9 @@
"""Tests for acme.challenges."""
import unittest
+from unittest import mock
import josepy as jose
import OpenSSL
-try:
- import mock
-except ImportError: # pragma: no cover
- from unittest import mock # type: ignore
import requests
from six.moves.urllib import parse as urllib_parse