def get_db(): db = None try: db = SessionLocal() yield db finally: db.close()
def get_db() -> Generator: try: db = SessionLocal() yield db finally: db.close()