Skip to content

Commit

Permalink
Add: Export NVDResults from pontos.nvd
Browse files Browse the repository at this point in the history
Export NVDResults from the main nvd module. pontos.nvd.api is considered
but sadly not explicitly marked as private.
  • Loading branch information
bjoernricks committed Dec 6, 2023
1 parent 4a989df commit fef8e2c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pontos/nvd/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

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",
)
1 change: 1 addition & 0 deletions pontos/nvd/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
"format_date",
"now",
"NVDApi",
"NVDResults",
)


Expand Down

0 comments on commit fef8e2c

Please sign in to comment.