Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Oct 29, 2024. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion influxdb/tests/dataframe_client_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@

if not using_pypy:
import pandas as pd
from pandas.util.testing import assert_frame_equal
try:
from pandas.testing import assert_frame_equal
except ImportError:
from pandas.util.testing import assert_frame_equal
from influxdb import DataFrameClient
import numpy as np

Expand Down