1
0
Fork 0
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:
Matteo Acerbi 2015-11-18 11:20:34 +01:00
parent 9b9fb51d9d
commit 0127d32652

View file

@ -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')
''' '''