analyze_python_file
Identify missing type annotations in Python files to enhance code clarity and maintainability, supporting detailed analysis when needed.
Instructions
Analyze a Python file for missing type annotations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
detailed | No | Include detailed analysis information | |
file_path | Yes | Path to the Python file to analyze |
Input Schema (JSON Schema)
{
"properties": {
"detailed": {
"default": false,
"description": "Include detailed analysis information",
"type": "boolean"
},
"file_path": {
"description": "Path to the Python file to analyze",
"type": "string"
}
},
"required": [
"file_path"
],
"type": "object"
}