Bug 1849084 - fix moznetwork doc generation r=firefox-source-docs-reviewers,sylvestre DONTBUILD

Differential Revision: https://phabricator.services.mozilla.com/D186417
This commit is contained in:
Logan Rosen 2023-08-21 10:52:36 +00:00
parent eae659cbc4
commit a18b378958
2 changed files with 3 additions and 3 deletions

View file

@ -21,7 +21,7 @@ EXTRA_PATHS = (
"testing/mozbase/manifestparser",
"testing/mozbase/mozfile",
"testing/mozbase/mozprocess",
"testing/mozbase/moznetwork/moznetwork",
"testing/mozbase/moznetwork",
"third_party/python/jsmin",
"third_party/python/which",
"docs/_addons",

View file

@ -21,6 +21,6 @@ Example usage:
"""
from .moznetwork import get_ip
from .moznetwork import NetworkError, get_ip
__all__ = ["get_ip"]
__all__ = ["get_ip", "NetworkError"]