esi-neuroscience / syncopy

Systems Neuroscience Computing in Python: user-friendly analysis of large-scale electrophysiology data
BSD 3-Clause "New" or "Revised" License
44 stars 13 forks source link

`info` property does not get copied with selections #564

Open tensionhead opened 1 year ago

tensionhead commented 1 year ago

To reproduce:

import syncopy as spy

adata1 = spy.synthdata.white_noise()
adata1.info = {'var1': 3}
adata2 = adata1.selectdata(channel=1)
adata2.info
>> {}