ansible/test/integration/targets/ansible-doc/library/double_doc.py
Matt Clay a0495fc314
Update triple single quotes to triple double quotes (#84099)
* Update triple single quotes to triple double quotes

This change was fully automated.

The updated Python files have been verified to tokenize the same as the originals, except for the expected change in quoting of strings, which were verified through literal_eval.

* Manual conversion of docstring quotes
2024-10-09 21:22:35 +00:00

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