fix: Complete deprecated typing imports replacement

- Replace typing.Type with type in all utility files
- Replace typing.Dict with dict in remaining files
- Replace typing.List with list in remaining files
- Fix all undefined name errors from deprecated imports
- Ensure compatibility with Python 3.10-3.13 type checking

Co-Authored-By: João <joao@crewai.com>
This commit is contained in:
Devin AI
2025-09-04 02:17:59 +00:00
parent 045da4f030
commit 3257d2757f
9 changed files with 37 additions and 39 deletions

View File

@@ -1,4 +1,4 @@
from typing import Dict, Optional, Union
from typing import Optional, Union
from pydantic import BaseModel, Field