* YOYO NEW API SPEC! * I have generated the latest API! --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
14 lines
209 B
Python
14 lines
209 B
Python
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
|
|
|
|
class SourcePosition(BaseModel):
|
|
"""A position in the source code."""
|
|
|
|
column: int
|
|
|
|
line: int
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|