You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/ansible-doc/library/double_doc.py

19 lines
310 B
Python

#!/usr/bin/python
from __future__ import annotations
DOCUMENTATION = r'''
name: double_doc
description:
- module also uses 'DOCUMENTATION' in class
'''
class Foo:
# 2nd ref to documentation string, used to trip up tokinzer doc reader
DOCUMENTATION = None
def __init__(self):
pass