Refactor MongoClient import: standardize import statements across push_notifications, tenant, and verify_audit_chain modules

This commit is contained in:
2026-04-29 00:05:55 +02:00
parent c2bb015b80
commit c8f9c87ba4
3 changed files with 15 additions and 9 deletions
+1 -1
View File
@@ -6,13 +6,13 @@ Handles Web Push notifications for users via Service Workers
import os
import json
import datetime
from pymongo import MongoClient
from bson import ObjectId
import requests
import hashlib
import logging
import settings as cfg
from settings import MongoClient
logger = logging.getLogger(__name__)