blob: 8f11f0110216efc73bbc579e6a0656d86e21115e (
plain)
1
2
3
4
5
6
7
8
9
10
|
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): ...
|