Skip to content

Commit 2b903d4

Browse files
Fix typo
1 parent 9146c26 commit 2b903d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/molearn/analysis/analyser.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1175,14 +1175,14 @@ def _cleanup_ramachandran_score(self):
11751175
Explicitly closes the multiprocessing pool if it was initialised.
11761176
"""
11771177
if hasattr(self, "ramachandran_score_class") and self.ramachandran_score_class:
1178-
self.ramachandran_score_class.close()
1178+
self.ramachandran_score_class._close()
11791179

11801180
def _cleanup_dope_score(self):
11811181
"""
11821182
Explicitly closes the multiprocessing pool if it was initialised.
11831183
"""
11841184
if hasattr(self, "dope_score_class") and self.dope_score_class:
1185-
self.dope_score_class.close()
1185+
self.dope_score_class._close()
11861186

11871187
def __del__(self):
11881188
"""

0 commit comments

Comments
 (0)