docs: fix some warnings etc.
This commit is contained in:
parent
0a1d9229b4
commit
4f68a2f360
1 changed files with 7 additions and 2 deletions
|
@ -232,7 +232,7 @@ class ImportHandler(GenericHandler):
|
||||||
"""
|
"""
|
||||||
Run import/export operations for the specified models.
|
Run import/export operations for the specified models.
|
||||||
|
|
||||||
:param \*keys: One or more importer/exporter (model) keys, as
|
:param \\*keys: One or more importer/exporter (model) keys, as
|
||||||
defined by the handler.
|
defined by the handler.
|
||||||
|
|
||||||
Each key specified must be present in :attr:`importers` and
|
Each key specified must be present in :attr:`importers` and
|
||||||
|
@ -460,6 +460,9 @@ class ImportHandler(GenericHandler):
|
||||||
Returns an importer/exporter instance corresponding to the
|
Returns an importer/exporter instance corresponding to the
|
||||||
given key.
|
given key.
|
||||||
|
|
||||||
|
Note that this will always create a *new* instance; they are
|
||||||
|
not cached.
|
||||||
|
|
||||||
The key will be the "model name" mapped to a particular
|
The key will be the "model name" mapped to a particular
|
||||||
importer/exporter class and thus must be present in
|
importer/exporter class and thus must be present in
|
||||||
:attr:`importers`.
|
:attr:`importers`.
|
||||||
|
@ -472,6 +475,8 @@ class ImportHandler(GenericHandler):
|
||||||
|
|
||||||
:param key: Model key for desired importer/exporter.
|
:param key: Model key for desired importer/exporter.
|
||||||
|
|
||||||
|
:param \\**kwargs: Extra/override kwargs for the importer.
|
||||||
|
|
||||||
:returns: Instance of (subclass of)
|
:returns: Instance of (subclass of)
|
||||||
:class:`~wuttasync.importing.base.Importer`.
|
:class:`~wuttasync.importing.base.Importer`.
|
||||||
"""
|
"""
|
||||||
|
@ -493,7 +498,7 @@ class ImportHandler(GenericHandler):
|
||||||
:param key: Model key for the desired importer/exporter,
|
:param key: Model key for the desired importer/exporter,
|
||||||
e.g. ``'Widget'``
|
e.g. ``'Widget'``
|
||||||
|
|
||||||
:param \**kwargs: Any kwargs we have so collected far.
|
:param \\**kwargs: Any kwargs we have so collected far.
|
||||||
|
|
||||||
:returns: Final kwargs dict for new importer/exporter.
|
:returns: Final kwargs dict for new importer/exporter.
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue