Skip to content

Commit

Permalink
fixes wrappers type tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rudolfix committed Oct 30, 2023
1 parent 726ea07 commit 7c32205
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dlt/extract/wrappers.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from typing import Any

from dlt.common.typing import NoneType
from dlt.common.exceptions import MissingDependencyException


Expand All @@ -9,7 +10,7 @@

PandaFrame, ArrowTable, ArrowRecords = pandas.DataFrame, pyarrow.Table, pyarrow.RecordBatch
except MissingDependencyException:
PandaFrame, ArrowTable, ArrowRecords = None, None, None
PandaFrame, ArrowTable, ArrowRecords = NoneType, NoneType, NoneType


def wrap_additional_type(data: Any) -> Any:
Expand Down

0 comments on commit 7c32205

Please sign in to comment.