From 0eeea4c5172a9741376670c9af142dab109ec441 Mon Sep 17 00:00:00 2001 From: sneakers-the-rat Date: Wed, 11 Sep 2024 21:17:46 -0700 Subject: [PATCH] lint --- nwb_linkml/tests/test_io/test_io_nwb.py | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/nwb_linkml/tests/test_io/test_io_nwb.py b/nwb_linkml/tests/test_io/test_io_nwb.py index f758855..1ad51ed 100644 --- a/nwb_linkml/tests/test_io/test_io_nwb.py +++ b/nwb_linkml/tests/test_io/test_io_nwb.py @@ -2,16 +2,18 @@ Placeholder test module to test reading from pynwb-generated NWB file """ -import pytest from datetime import datetime -from numpydantic.interface.hdf5 import H5Proxy -from nwb_linkml.io.hdf5 import HDF5IO -from nwb_models.models import NWBFile -from pydantic import BaseModel + import numpy as np import pandas as pd +import pytest +from numpydantic.interface.hdf5 import H5Proxy +from pydantic import BaseModel +from pynwb import NWBHDF5IO +from pynwb import NWBFile as PyNWBFile -from pynwb import NWBHDF5IO, NWBFile as PyNWBFile +from nwb_linkml.io.hdf5 import HDF5IO +from nwb_models.models import NWBFile def test_read_from_nwbfile(nwb_file):