Skip to content

Commit bd634a7

Browse files
committed
isort
1 parent 143d542 commit bd634a7

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

tests/test_metadata.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
"""Tests for metadata in IntervalSet, TsdFrame, and TsGroup"""
22

33
import inspect
4-
import pickle
4+
import re
55
import warnings
66
from contextlib import nullcontext as does_not_raise
7-
from numbers import Number
87
from pathlib import Path
9-
import re
108

119
import numpy as np
1210
import pandas as pd
@@ -1305,7 +1303,8 @@ def get_defined_members(cls):
13051303
"nap_class", [nap.core.IntervalSet, nap.core.TsdFrame, nap.core.TsGroup]
13061304
)
13071305
def test_no_conflict_between_class_and_metadatamixin(nap_class):
1308-
from pynapple.core.metadata_class import _MetadataMixin # Adjust import as needed
1306+
from pynapple.core.metadata_class import \
1307+
_MetadataMixin # Adjust import as needed
13091308

13101309
iset_members = get_defined_members(nap_class)
13111310
metadatamixin_members = get_defined_members(_MetadataMixin)

0 commit comments

Comments
 (0)