We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e78b1aa + 4a2fdab commit 46979bbCopy full SHA for 46979bb
2 files changed
docs/api/tuf.ngclient.fetcher.rst
@@ -3,3 +3,4 @@ Fetcher
3
4
.. automodule:: tuf.ngclient.fetcher
5
:undoc-members:
6
+ :private-members: _fetch
tuf/ngclient/fetcher.py
@@ -23,6 +23,9 @@ class FetcherInterface:
23
By providing a concrete implementation of the abstract interface,
24
users of the framework can plug-in their preferred/customized
25
network stack.
26
+
27
+ Implementations of FetcherInterface only need to implement ``_fetch()``.
28
+ The public API of the class is already implemented.
29
"""
30
31
__metaclass__ = abc.ABCMeta
0 commit comments