mirror of
https://github.com/certbot/certbot.git
synced 2025-07-30 09:03:08 +03:00
Upgrade the pinned version of pylint (#9839)
* upgrade pylint * fix upgraded pylint * downgrade pyopenssl * remove unneeded ignores * stop using text * update sphinx-rtd-theme
This commit is contained in:
@ -10,7 +10,6 @@ import os.path
|
||||
import re
|
||||
|
||||
from pylint.checkers import BaseChecker
|
||||
from pylint.interfaces import IAstroidChecker
|
||||
|
||||
# Modules whose file is matching one of these paths can import the os module.
|
||||
WHITELIST_PATHS = [
|
||||
@ -25,7 +24,6 @@ class ForbidStandardOsModule(BaseChecker):
|
||||
This checker ensures that standard os module (and submodules) is not imported by certbot
|
||||
modules. Otherwise an 'os-module-forbidden' error will be registered for the faulty lines.
|
||||
"""
|
||||
__implements__ = IAstroidChecker
|
||||
|
||||
name = 'forbid-os-module'
|
||||
msgs = {
|
||||
|
Reference in New Issue
Block a user