Close the singleton database instance. Used before encrypting the DB file.
()
| 2750 | DatabaseManager instance |
| 2751 | """ |
| 2752 | global _db_instance |
| 2753 | |
| 2754 | if _db_instance is None: |
| 2755 | with _db_lock: |
| 2756 | if _db_instance is None: |
| 2757 | _db_instance = DatabaseManager(currentdir=currentdir) |
| 2758 | |
| 2759 | return _db_instance |