
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
안녕하세요! bob 나이를 19살로 변경하는 과정에 있는데요, mongoDB에 반영되지 않습니다ㅠ


시간이 지났음에도 안되는데 무엇이 문제일까요
from pymongo import MongoClient
import certifi
ca = certifi.where()
client = MongoClient("mongodb+srv://test:sparta@cluster0.pwllcbl.mongodb.net/Cluster0?retryWrites=true&w=majority",
tlsCAFile=ca)
db = client.dbsparta
db.users.update_one({'name':'bob'},{'$set':{'age':19}})
