removing pandas

This commit is contained in:
sneakers-the-rat 2023-10-04 18:02:40 -07:00
parent 9947edfed2
commit ab63ea071c
2 changed files with 2 additions and 1 deletions

View file

@ -161,6 +161,7 @@ class NDArray(_NDArray):
when_used='json'
)
)
class NDArrayProxy():
"""
Thin proxy to numpy arrays stored within hdf5 files,

View file

@ -1,6 +1,5 @@
import pytest
import pandas as pd
from pydantic import BaseModel, ValidationError
from typing import List, Union, Optional
@ -9,6 +8,7 @@ def test_df():
"""
Dataframe class should behave like both a pydantic model and a dataframe
"""
import pandas as pd
from nwb_linkml.types.df import DataFrame
class MyDf(DataFrame):