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' when_used='json'
) )
) )
class NDArrayProxy(): class NDArrayProxy():
""" """
Thin proxy to numpy arrays stored within hdf5 files, Thin proxy to numpy arrays stored within hdf5 files,

View file

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