Remove __init__ and exempt doc for QA (long lines)
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Luke Murphy 2020-03-28 18:06:00 +01:00
parent a0374d8209
commit 3363f7a76b
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
2 changed files with 5 additions and 6 deletions

View File

@ -1 +0,0 @@
VERSION = "0.0.1"

View File

@ -17,9 +17,9 @@ author:
options:
apirest_key:
description:
- The Gandi REST API key. It may also be specified by the
C(API_REST_KEY) environment variable. See the
U(https://github.com/Gandi/gandi.cli/blob/master/gandicli.man.rst#environment)
- The Gandi REST API key. It may also be specified by the C(APIREST_KEY)
environment variable. See U(https://github.com/Gandi/gandi.cli/blob/master/gandicli.man.rst#environment)
for more.
type: str
required: true
domain:
@ -38,7 +38,7 @@ options:
- present
- absent
required: true
"""
""" # noqa
EXAMPLES = """
- name: Create a new Gandi DNS entry
@ -65,7 +65,7 @@ except ImportError:
def retrieve_domain(domain):
"""Retrieve information about an existing domain."""
pass
output = subprocess.check_output(["gandi", ""])
def main():