Mark python-nmap as completed (#9226)

This commit is contained in:
Nikita Sobolev
2022-11-19 16:47:41 +03:00
committed by GitHub
parent 49fca14a15
commit ffc528f373
4 changed files with 7 additions and 0 deletions

View File

@@ -0,0 +1 @@
nmap.test_nmap

View File

@@ -1 +1,4 @@
version = "0.7.*"
[tool.stubtest]
ignore_missing_stub = false

View File

@@ -1 +1,2 @@
from .nmap import *
from .nmap import __author__ as __author__, __last_modification__ as __last_modification__, __version__ as __version__

View File

@@ -49,6 +49,8 @@ class _ResultHostPort(TypedDict):
version: str
__last_modification__: str
__author__: str
__version__: str
class PortScanner:
def __init__(self, nmap_search_path: Iterable[str] = ...) -> None: ...