Skip to content

Commit

Permalink
isort
Browse files Browse the repository at this point in the history
  • Loading branch information
sjvenditto committed Feb 10, 2025
1 parent 143d542 commit bd634a7
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tests/test_metadata.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
"""Tests for metadata in IntervalSet, TsdFrame, and TsGroup"""

import inspect
import pickle
import re
import warnings
from contextlib import nullcontext as does_not_raise
from numbers import Number
from pathlib import Path
import re

import numpy as np
import pandas as pd
Expand Down Expand Up @@ -1305,7 +1303,8 @@ def get_defined_members(cls):
"nap_class", [nap.core.IntervalSet, nap.core.TsdFrame, nap.core.TsGroup]
)
def test_no_conflict_between_class_and_metadatamixin(nap_class):
from pynapple.core.metadata_class import _MetadataMixin # Adjust import as needed
from pynapple.core.metadata_class import \
_MetadataMixin # Adjust import as needed

iset_members = get_defined_members(nap_class)
metadatamixin_members = get_defined_members(_MetadataMixin)
Expand Down

0 comments on commit bd634a7

Please sign in to comment.