mirror of
https://github.com/zebrajr/ansible.git
synced 2025-12-06 12:19:53 +01:00
* 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
19 lines
310 B
Python
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
|