diff --git a/pontos/nvd/__init__.py b/pontos/nvd/__init__.py index 006919caf..03ffe0a17 100644 --- a/pontos/nvd/__init__.py +++ b/pontos/nvd/__init__.py @@ -15,11 +15,12 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -from .api import NVDApi, convert_camel_case, format_date, now +from .api import NVDApi, NVDResults, convert_camel_case, format_date, now __all__ = ( "convert_camel_case", "format_date", "now", "NVDApi", + "NVDResults", ) diff --git a/pontos/nvd/api.py b/pontos/nvd/api.py index c22501907..3ea297cb0 100644 --- a/pontos/nvd/api.py +++ b/pontos/nvd/api.py @@ -55,6 +55,7 @@ "format_date", "now", "NVDApi", + "NVDResults", )