Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
zundertj committed Feb 26, 2023
1 parent 64b9ec2 commit b385d05
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion py-polars/polars/internals/expr/expr.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from __future__ import annotations

import contextlib
import math
import os
import random
Expand Down Expand Up @@ -33,14 +34,16 @@
from polars.internals.expr.meta import ExprMetaNameSpace
from polars.internals.expr.string import ExprStringNameSpace
from polars.internals.expr.struct import ExprStructNameSpace
from polars.polars import arg_where as py_arg_where
from polars.utils import (
_timedelta_to_pl_duration,
deprecate_nonkeyword_arguments,
deprecated_alias,
sphinx_accessor,
)

with contextlib.suppress(ImportError): # Module not available when building docs
from polars.polars import arg_where as py_arg_where

if TYPE_CHECKING:
import sys

Expand Down

0 comments on commit b385d05

Please sign in to comment.