mirror of
https://github.com/certbot/certbot.git
synced 2026-06-04 22:33:00 -04:00
Add setup.py module docstrings to make lint happy
This commit is contained in:
parent
88bd10ebf7
commit
981af3e31e
16 changed files with 16 additions and 0 deletions
|
|
@ -1,3 +1,4 @@
|
|||
"""Setup script for acme"""
|
||||
from setuptools import setup
|
||||
from setuptools import find_packages
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
"""Setup script for certbot-apache"""
|
||||
from setuptools import setup
|
||||
from setuptools import find_packages
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
"""Setup script for certbot-compatibility-test"""
|
||||
import sys
|
||||
|
||||
from setuptools import setup
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
"""Setup script for certbot-dns-cloudflare"""
|
||||
from setuptools import setup
|
||||
from setuptools import find_packages
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
"""Setup script for certbot-dns-cloudxns"""
|
||||
from setuptools import setup
|
||||
from setuptools import find_packages
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
"""Setup script for certbot-dns-digitalocean"""
|
||||
from setuptools import setup
|
||||
from setuptools import find_packages
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
"""Setup script for certbot-dns-dnsimple"""
|
||||
from setuptools import setup
|
||||
from setuptools import find_packages
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
"""Setup script for certbot-dns-dnsmadeeasy"""
|
||||
from setuptools import setup
|
||||
from setuptools import find_packages
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
"""Setup script for certbot-dns-google"""
|
||||
from setuptools import setup
|
||||
from setuptools import find_packages
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
"""Setup script for certbot-dns-luadns"""
|
||||
from setuptools import setup
|
||||
from setuptools import find_packages
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
"""Setup script for certbot-dns-nsone"""
|
||||
from setuptools import setup
|
||||
from setuptools import find_packages
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
"""Setup script for certbot-dns-rfc2136"""
|
||||
from setuptools import setup
|
||||
from setuptools import find_packages
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
"""Setup script for certbot-dns-route53"""
|
||||
from distutils.core import setup
|
||||
from setuptools import find_packages
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
"""Setup script for certbot-nginx"""
|
||||
from setuptools import setup
|
||||
from setuptools import find_packages
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
"""Setup script for letshelp-certbot"""
|
||||
from setuptools import setup
|
||||
from setuptools import find_packages
|
||||
|
||||
|
|
|
|||
1
setup.py
1
setup.py
|
|
@ -1,3 +1,4 @@
|
|||
"""Setup script for Certbot"""
|
||||
import codecs
|
||||
import os
|
||||
import re
|
||||
|
|
|
|||
Loading…
Reference in a new issue