Skip to content

Commit

Permalink
Change: Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
n-thumann authored and greenbonebot committed Mar 6, 2025
1 parent d09e8db commit 5834b86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pontos/nvd/source/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class SourceApi(NVDApi):
from pontos.nvd.source import SourceApi
async with SourceApi() as api:
async for source in api.source():
async for source in api.sources():
print(source)
"""

Expand Down Expand Up @@ -115,7 +115,7 @@ def sources(
from pontos.nvd.source import SourceApi
async with SourceApi() as api:
async for source in api.source(source_identifier="cve@mitre.org"):
async for source in api.sources(source_identifier="cve@mitre.org"):
print(source)
"""
params: Params = {}
Expand Down

0 comments on commit 5834b86

Please sign in to comment.