diff --git a/typings/fqdn/__init__.pyi b/typings/fqdn/__init__.pyi new file mode 100644 index 0000000000..61cf4a40d7 --- /dev/null +++ b/typings/fqdn/__init__.pyi @@ -0,0 +1,7 @@ +from typing import Any + + +class FQDN: + def __init__(self, fqdn: Any, *nothing: list[Any], **kwags: dict[Any, Any]) -> None: ... + @property + def is_valid(self) -> bool: ...