You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Traceback (most recent call last):
File "(/path/to/minimal_example.py)", line 8, in <module>
d2.update(d1)
File "/usr/lib/python3.8/_collections_abc.py", line 834, in update
for key in other.keys():
TypeError: 'list' object is not callable
🐛 Describe the bug
The data.Data.update() method fails in the following minimal example.
The following exception is thrown:
The
update
method in_collections_abc.py
will runThe
Data
class from PyG has a list of keyskeys
, so the call toother.keys()
fails here.Environment
conda
,pip
, source):pip
torch-scatter
):The text was updated successfully, but these errors were encountered: