Skip to content

Commit ff48847

Browse files
import fix
1 parent 2673281 commit ff48847

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

pandas/core/methods/corr.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
1+
"""
2+
Module for correlation related implementation
3+
"""
4+
5+
from __future__ import annotations
6+
7+
from typing import TYPE_CHECKING
8+
19
import numpy as np
210

3-
from pandas import DataFrame
11+
if TYPE_CHECKING:
12+
from pandas import DataFrame
413

514

615
def transform_ord_cat_cols_to_coded_cols(df: DataFrame) -> DataFrame:

0 commit comments

Comments
 (0)