blob: 83e26873e04846e258f09aa9dfb69830c856f014 (
plain)
1
2
3
4
5
6
|
# Re-export some functions from `_utils` to make them public.
from __future__ import annotations
from narwhals._utils import Implementation, Version, parse_version
__all__ = ["Implementation", "Version", "parse_version"]
|