This is something that already came up in one of our meetings, that self.data.keys worked with or without () depending on the versions. This is caused by PyG where they turned keys() into a method in version 2.4.0 while it was a property in version 2.3.1.
This is something that already came up in one of our meetings, that
self.data.keys
worked with or without()
depending on the versions. This is caused by PyG where they turnedkeys()
into a method in version 2.4.0 while it was a property in version 2.3.1.