mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix DataLoader's docstring
DataLoader.__init__ doesn't take an argument named vault_password
This commit is contained in:
parent
9b9fb51d9d
commit
0127d32652
1 changed files with 1 additions and 3 deletions
|
@ -52,9 +52,7 @@ class DataLoader():
|
||||||
Usage:
|
Usage:
|
||||||
|
|
||||||
dl = DataLoader()
|
dl = DataLoader()
|
||||||
(or)
|
# optionally: dl.set_vault_password('foo')
|
||||||
dl = DataLoader(vault_password='foo')
|
|
||||||
|
|
||||||
ds = dl.load('...')
|
ds = dl.load('...')
|
||||||
ds = dl.load_from_file('/path/to/file')
|
ds = dl.load_from_file('/path/to/file')
|
||||||
'''
|
'''
|
||||||
|
|
Loading…
Reference in a new issue