Skip to content

Commit

Permalink
feat: comment the atexit call.
Browse files Browse the repository at this point in the history
  • Loading branch information
germa89 committed Jan 29, 2025
1 parent 9ce975c commit a3788e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ansys/mapdl/core/mapdl_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

"""Module to control interaction with MAPDL through Python"""

import atexit
# import atexit
from functools import wraps
import glob
import logging
Expand Down Expand Up @@ -262,7 +262,7 @@ def __init__(
**start_parm,
):
"""Initialize connection with MAPDL."""
atexit.register(self.__del__) # registering to exit properly
# atexit.register(self.__del__) # registering to exit properly
self._show_matplotlib_figures = True # for testing
self._query = None
self._exited: bool = False
Expand Down

0 comments on commit a3788e5

Please sign in to comment.