mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
scaleway module utils: make function private that should be removed (#5499)
* Make function private that should be removed (ref: #5497). * Maybe it works as a comment? * Try something else. * Ok, let's just add a comment. * Last try: docstring instead of comment.
This commit is contained in:
parent
1430ed000c
commit
c4b18361b9
1 changed files with 4 additions and 0 deletions
|
@ -84,6 +84,10 @@ def parse_pagination_link(header):
|
|||
|
||||
|
||||
def filter_sensitive_attributes(container, attributes):
|
||||
'''
|
||||
WARNING: This function is effectively private, **do not use it**!
|
||||
It will be removed or renamed once changing its name no longer triggers a pylint bug.
|
||||
'''
|
||||
for attr in attributes:
|
||||
container[attr] = "SENSITIVE_VALUE"
|
||||
|
||||
|
|
Loading…
Reference in a new issue