Files
Buffteks-Website/venv/lib/python3.12/site-packages/narwhals/stable/v1/_namespace.py
2025-05-08 21:10:14 -05:00

11 lines
295 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.V1): ...