type_check_file
Perform type checking on a Python file using Pyrefly's type inference engine to ensure code correctness and compliance with type annotations.
Instructions
Run type checking on a Python file using Pyrefly
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_path | Yes | Path to the Python file to type check |
Input Schema (JSON Schema)
{
"properties": {
"file_path": {
"description": "Path to the Python file to type check",
"type": "string"
}
},
"required": [
"file_path"
],
"type": "object"
}