Update _parsers._sanitise_list() documentation.
parent
4fcfef1bde
commit
f996bf9e31
|
@ -430,9 +430,9 @@ def _sanitise_list(arg_list):
|
||||||
|
|
||||||
:param list arg_list: A list of options and flags for GnuPG.
|
:param list arg_list: A list of options and flags for GnuPG.
|
||||||
:rtype: generator
|
:rtype: generator
|
||||||
:return: A generator whose next() method returns each of the items in
|
:returns: A generator whose next() method returns each of the items in
|
||||||
``arg_list`` after calling ``_sanitise()`` with that item as a
|
``arg_list`` after calling ``_sanitise()`` with that item as a
|
||||||
parameter.
|
parameter.
|
||||||
"""
|
"""
|
||||||
if isinstance(arg_list, list):
|
if isinstance(arg_list, list):
|
||||||
for arg in arg_list:
|
for arg in arg_list:
|
||||||
|
|
Loading…
Reference in New Issue