From efaad745eec950100231ef6294bde7df47cbaff8 Mon Sep 17 00:00:00 2001 From: BalzaniEdoardo Date: Tue, 21 May 2024 15:54:36 -0400 Subject: [PATCH] linted --- tests/test_lazy_loading.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/test_lazy_loading.py b/tests/test_lazy_loading.py index 6ba7e55e..a5eb97f3 100644 --- a/tests/test_lazy_loading.py +++ b/tests/test_lazy_loading.py @@ -1,14 +1,15 @@ import os.path +import warnings +from contextlib import nullcontext as does_not_raise +from pathlib import Path import h5py +import numpy as np import pandas as pd +import pytest import pynapple as nap -import numpy as np -import pytest -from contextlib import nullcontext as does_not_raise -from pathlib import Path -import warnings + @pytest.mark.parametrize( "time, data, expectation", @@ -226,5 +227,4 @@ def test_lazy_load_nwb_no_warnings(path, var_name): if isinstance(tsd, (nap.Tsd, nap.TsdFrame, nap.TsdTensor)): tsd * 2 - nwb.io.close()