Skip to content

Commit 98d97e7

Browse files
Removing stray del method from interation kernel
As not needed now that JIT is gone in v4
1 parent 0414f58 commit 98d97e7

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

parcels/interaction/interactionkernel.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -111,12 +111,6 @@ def __radd__(self, kernel):
111111
kernel = InteractionKernel(self.fieldset, self.ptype, pyfunc=kernel)
112112
return kernel.merge(self, InteractionKernel)
113113

114-
def __del__(self):
115-
# Clean-up the in-memory dynamic linked libraries.
116-
# This is not really necessary, as these programs are not that large, but with the new random
117-
# naming scheme which is required on Windows OS'es to deal with updates to a Parcels' kernel.)
118-
super().__del__()
119-
120114
def execute_python(self, pset, endtime, dt):
121115
"""Performs the core update loop via Python.
122116

0 commit comments

Comments
 (0)