mirror of
https://github.com/p2p-ld/nwb-linkml.git
synced 2024-11-12 17:54:29 +00:00
removing pandas
This commit is contained in:
parent
9947edfed2
commit
ab63ea071c
2 changed files with 2 additions and 1 deletions
|
@ -161,6 +161,7 @@ class NDArray(_NDArray):
|
|||
when_used='json'
|
||||
)
|
||||
)
|
||||
|
||||
class NDArrayProxy():
|
||||
"""
|
||||
Thin proxy to numpy arrays stored within hdf5 files,
|
||||
|
|
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue