Merge pull request #66 from ansible/sanity_fixes

The last of the sanity fixes
This commit is contained in:
Alex Stephen 2019-11-13 16:08:18 -08:00 committed by GitHub
commit aa51f4df67
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View file

@ -5,6 +5,9 @@
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
class ModuleDocFragment(object):
# GCP doc fragment.
DOCUMENTATION = r'''

View file

@ -3,6 +3,8 @@
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
try:
import requests
HAS_REQUESTS = True