Skip to content

Commit 6bd7be9

Browse files
committed
fix tabular dataset pandas import error
1 parent df4aabd commit 6bd7be9

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

src/pasteur/dataset.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,10 @@
55

66
from typing import TYPE_CHECKING, Any, Callable
77

8-
from .module import Module
9-
from .utils import LazyChunk, LazyFrame, to_chunked, RawSource
8+
import pandas as pd
109

11-
if TYPE_CHECKING:
12-
import pandas as pd
10+
from .module import Module
11+
from .utils import LazyChunk, LazyFrame, RawSource, to_chunked
1312

1413

1514
class Dataset(Module):

0 commit comments

Comments
 (0)