Files
dash-api/lib/python3.11/site-packages/narwhals/stable/v2/_namespace.py
2025-09-07 22:09:54 +02:00

11 lines
296 B
Python

from __future__ import annotations
from narwhals._compliant.typing import CompliantNamespaceT_co
from narwhals._namespace import Namespace as NwNamespace
from narwhals._utils import Version
__all__ = ["Namespace"]
class Namespace(NwNamespace[CompliantNamespaceT_co], version=Version.V2): ...