1
0
mirror of https://github.com/certbot/certbot.git synced 2026-01-26 07:41:33 +03:00

Removed some unused imports. (#8424)

These were not annotated as something that should be ignored, and the test-suite
passes with these changes.
This commit is contained in:
Mads Jensen
2020-12-04 14:29:58 +01:00
committed by GitHub
parent 356e8d84d6
commit 5871de0c07
5 changed files with 0 additions and 6 deletions

View File

@@ -6,7 +6,6 @@ This module is an implementation of the `ACME protocol`_.
"""
import sys
import warnings
# This code exists to keep backwards compatibility with people using acme.jose
# before it became the standalone josepy package.

View File

@@ -9,8 +9,6 @@ See https://docs.pytest.org/en/latest/reference.html#hook-reference
from __future__ import print_function
import os
import pytest
ROOT_PATH = os.path.dirname(os.path.dirname(os.path.dirname(__file__)))

View File

@@ -1,7 +1,6 @@
"""Null plugin."""
import logging
import zope.component
import zope.interface
from certbot import interfaces

View File

@@ -13,7 +13,6 @@ except ImportError: # pragma: no cover
from certbot import errors
from certbot import util
from certbot._internal import account
from certbot.compat import filesystem
from certbot.compat import os
import certbot.tests.util as test_util

View File

@@ -1,7 +1,6 @@
"""Tests for certbot.compat.filesystem"""
import contextlib
import errno
import stat
import unittest
try: