# Current strict mypy errors for the Modelable CLI.
# This file is a ratchet baseline: remove lines as typing issues are fixed,
# but do not add new lines unless intentionally accepting existing debt.
src/modelable/commands/codegen.py:62: error: Incompatible types in assignment (expression has type "str | None", variable has type "str")  [assignment]
src/modelable/commands/common.py:15: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/commands/common.py:22: error: Argument "path" to "diagnostic" of "ParseError" has incompatible type "Path"; expected "str | None"  [arg-type]
src/modelable/commands/common.py:36: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/commands/create.py:119: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/commands/create.py:148: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/commands/create.py:62: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/commands/create.py:93: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/commands/spec.py:140: error: "object" has no attribute "__iter__"; maybe "__dir__" or "__str__"? (not iterable)  [attr-defined]
src/modelable/commands/spec.py:194: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/commands/workspace.py:101: error: Incompatible types in assignment (expression has type "Any | None", variable has type "str")  [assignment]
src/modelable/commands/workspace.py:106: error: "str" has no attribute "models"  [attr-defined]
src/modelable/commands/workspace.py:112: error: "str" has no attribute "name"  [attr-defined]
src/modelable/commands/workspace.py:126: error: "str" has no attribute "projections"  [attr-defined]
src/modelable/commands/workspace.py:132: error: "str" has no attribute "name"  [attr-defined]
src/modelable/commands/workspace.py:133: error: "str" has no attribute "name"  [attr-defined]
src/modelable/commands/workspace.py:179: error: Argument 3 to "resolve_model_ref" has incompatible type "int | object"; expected "VersionExact | VersionRange | VersionMin | VersionPinned | int"  [arg-type]
src/modelable/commands/workspace.py:51: error: Incompatible types in assignment (expression has type "Any | None", variable has type "str")  [assignment]
src/modelable/commands/workspace.py:56: error: "str" has no attribute "models"  [attr-defined]
src/modelable/commands/workspace.py:60: error: "str" has no attribute "description"  [attr-defined]
src/modelable/commands/workspace.py:60: error: "str" has no attribute "name"  [attr-defined]
src/modelable/commands/workspace.py:60: error: "str" has no attribute "owner"; maybe "lower"?  [attr-defined]
src/modelable/commands/workspace.py:65: error: "str" has no attribute "projections"  [attr-defined]
src/modelable/commands/workspace.py:73: error: "str" has no attribute "name"  [attr-defined]
src/modelable/commands/workspace.py:76: error: "str" has no attribute "owner"; maybe "lower"?  [attr-defined]
src/modelable/commands/workspace.py:77: error: "str" has no attribute "description"  [attr-defined]
src/modelable/compiler/workspace.py:160: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/compiler/workspace.py:164: error: "ModelVersion" has no attribute "auto_generated"  [attr-defined]
src/modelable/compiler/workspace.py:253: error: Missing type arguments for generic type "list"  [type-arg]
src/modelable/compiler/workspace.py:261: error: Missing type arguments for generic type "tuple"  [type-arg]
src/modelable/emitters/csharp.py:21: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/emitters/csharp.py:23: error: Argument 3 to "_emit_projection" has incompatible type "ModelVersion"; expected "ProjectionVersion"  [arg-type]
src/modelable/emitters/csharp.py:264: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/emitters/csharp.py:264: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/csharp.py:278: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "optional"  [union-attr]
src/modelable/emitters/csharp.py:278: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "type"  [union-attr]
src/modelable/emitters/csharp.py:81: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/dbt_yaml.py:274: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "type"  [union-attr]
src/modelable/emitters/dbt_yaml.py:40: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/emitters/dbt_yaml.py:42: error: Argument 3 to "_emit_projection" has incompatible type "ModelVersion"; expected "ProjectionVersion"  [arg-type]
src/modelable/emitters/fhir.py:161: error: Argument 1 to "append" of "list" has incompatible type "object"; expected "EmittedArtifact"  [arg-type]
src/modelable/emitters/fhir.py:162: error: Argument 1 to "extend" of "list" has incompatible type "object"; expected "Iterable[EmittedArtifact]"  [arg-type]
src/modelable/emitters/fhir.py:341: error: Incompatible return value type (got "FieldDef | ProjectionField | None", expected "FieldDef | None")  [return-value]
src/modelable/emitters/go.py:184: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/go.py:209: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/go.py:21: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/emitters/go.py:23: error: Argument 3 to "_emit_projection" has incompatible type "ModelVersion"; expected "ProjectionVersion"  [arg-type]
src/modelable/emitters/go.py:352: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/emitters/go.py:352: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/go.py:366: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "optional"  [union-attr]
src/modelable/emitters/go.py:366: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "type"  [union-attr]
src/modelable/emitters/go.py:78: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/java.py:21: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/emitters/java.py:23: error: Argument 3 to "_emit_projection" has incompatible type "ModelVersion"; expected "ProjectionVersion"  [arg-type]
src/modelable/emitters/java.py:286: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/emitters/java.py:286: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/java.py:300: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "optional"  [union-attr]
src/modelable/emitters/java.py:300: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "type"  [union-attr]
src/modelable/emitters/java.py:81: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/json_schema.py:124: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/json_schema.py:132: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:170: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:173: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:176: error: Argument 1 to "_resolve_projection_field_type" has incompatible type "ProjectionField"; expected "FieldDef"  [arg-type]
src/modelable/emitters/json_schema.py:177: error: Argument 1 to "_field_to_json_schema" has incompatible type "ProjectionField"; expected "FieldDef"  [arg-type]
src/modelable/emitters/json_schema.py:206: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/json_schema.py:206: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:226: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/emitters/json_schema.py:251: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:260: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/emitters/json_schema.py:260: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/json_schema.py:266: error: "FieldDef" has no attribute "mapping"  [attr-defined]
src/modelable/emitters/json_schema.py:283: error: "FieldDef" has no attribute "mapping"  [attr-defined]
src/modelable/emitters/json_schema.py:284: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "type"  [union-attr]
src/modelable/emitters/json_schema.py:289: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/json_schema.py:290: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:291: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:337: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/json_schema.py:337: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:402: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:403: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:404: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:405: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:440: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:444: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:460: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:482: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/json_schema.py:482: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:51: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/emitters/json_schema.py:53: error: Argument 3 to "_emit_projection_version" has incompatible type "ModelVersion"; expected "ProjectionVersion"  [arg-type]
src/modelable/emitters/json_schema.py:71: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:87: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/json_schema.py:90: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/markdown.py:161: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/markdown.py:183: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/markdown.py:45: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/emitters/markdown.py:47: error: Argument 3 to "_emit_projection" has incompatible type "ModelVersion"; expected "ProjectionVersion"  [arg-type]
src/modelable/emitters/odcs.py:171: error: Incompatible types in assignment (expression has type "list[str]", target has type "str")  [assignment]
src/modelable/emitters/odcs.py:298: error: Incompatible return value type (got "FieldDef | ProjectionField | None", expected "FieldDef | None")  [return-value]
src/modelable/emitters/odcs.py:47: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/emitters/odcs.py:49: error: Argument 3 to "_emit_projection" has incompatible type "ModelVersion"; expected "ProjectionVersion"  [arg-type]
src/modelable/emitters/openlineage.py:140: error: Argument 1 to "_model_schema_field" has incompatible type "FieldDef | ProjectionField"; expected "FieldDef"  [arg-type]
src/modelable/emitters/openlineage.py:270: error: Incompatible return value type (got "FieldDef | ProjectionField | None", expected "FieldDef | None")  [return-value]
src/modelable/emitters/openlineage.py:46: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/emitters/openlineage.py:48: error: Argument 3 to "_emit_projection" has incompatible type "ModelVersion"; expected "ProjectionVersion"  [arg-type]
src/modelable/emitters/openlineage.py:84: error: Unsupported target for indexed assignment ("object")  [index]
src/modelable/emitters/openmetadata.py:201: error: Incompatible return value type (got "FieldDef | ProjectionField", expected "FieldDef | None")  [return-value]
src/modelable/emitters/openmetadata.py:218: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/openmetadata.py:39: error: Need type annotation for "om_data"  [var-annotated]
src/modelable/emitters/openmetadata.py:49: error: Item "None" of "list[Any] | str | None" has no attribute "append"  [union-attr]
src/modelable/emitters/openmetadata.py:49: error: Item "str" of "list[Any] | str | None" has no attribute "append"  [union-attr]
src/modelable/emitters/openmetadata.py:51: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/emitters/openmetadata.py:53: error: Argument 2 to "_resolve_source" has incompatible type "ModelVersion"; expected "ProjectionVersion"  [arg-type]
src/modelable/emitters/openmetadata.py:54: error: Argument 3 to "_projection_asset" has incompatible type "ModelVersion"; expected "ProjectionVersion"  [arg-type]
src/modelable/emitters/openmetadata.py:54: error: Item "None" of "list[Any] | str | None" has no attribute "append"  [union-attr]
src/modelable/emitters/openmetadata.py:54: error: Item "str" of "list[Any] | str | None" has no attribute "append"  [union-attr]
src/modelable/emitters/openmetadata.py:55: error: Argument 3 to "_projection_lineage" has incompatible type "ModelVersion"; expected "ProjectionVersion"  [arg-type]
src/modelable/emitters/openmetadata.py:55: error: Item "None" of "list[Any] | str | None" has no attribute "extend"  [union-attr]
src/modelable/emitters/openmetadata.py:55: error: Item "str" of "list[Any] | str | None" has no attribute "extend"  [union-attr]
src/modelable/emitters/python.py:159: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/python.py:175: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/python.py:21: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/emitters/python.py:23: error: Argument 3 to "_emit_projection" has incompatible type "ModelVersion"; expected "ProjectionVersion"  [arg-type]
src/modelable/emitters/python.py:279: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/emitters/python.py:279: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/python.py:293: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "optional"  [union-attr]
src/modelable/emitters/python.py:293: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "type"  [union-attr]
src/modelable/emitters/python.py:75: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/rust.py:1057: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/emitters/rust.py:1057: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/rust.py:1071: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "optional"  [union-attr]
src/modelable/emitters/rust.py:1071: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "type"  [union-attr]
src/modelable/emitters/rust.py:1075: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/rust.py:1075: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/rust.py:1083: error: Returning Any from function declared to return "dict[Any, Any]"  [no-any-return]
src/modelable/emitters/rust.py:1088: error: Returning Any from function declared to return "dict[Any, Any]"  [no-any-return]
src/modelable/emitters/rust.py:1092: error: Returning Any from function declared to return "dict[Any, Any]"  [no-any-return]
src/modelable/emitters/rust.py:119: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/rust.py:131: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/emitters/rust.py:133: error: "ModelVersion" has no attribute "source"  [attr-defined]
src/modelable/emitters/rust.py:138: error: Argument 3 to "_emit_projection" has incompatible type "ModelVersion"; expected "ProjectionVersion"  [arg-type]
src/modelable/emitters/rust.py:193: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/rust.py:193: error: Missing type arguments for generic type "set"  [type-arg]
src/modelable/emitters/rust.py:214: error: Missing type arguments for generic type "set"  [type-arg]
src/modelable/emitters/rust.py:381: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/rust.py:42: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/rust.py:449: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/rust.py:458: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/rust.py:565: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/rust.py:57: error: Missing type arguments for generic type "frozenset"  [type-arg]
src/modelable/emitters/rust.py:679: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/rust.py:846: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/rust.py:893: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/rust.py:922: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/rust.py:948: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/rust.py:962: error: Returning Any from function declared to return "str"  [no-any-return]
src/modelable/emitters/sql.py:220: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/emitters/sql.py:220: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/sql.py:235: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/emitters/sql.py:235: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/sql.py:241: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/sql.py:241: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/sql.py:253: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/sql.py:257: error: Returning Any from function declared to return "bool"  [no-any-return]
src/modelable/emitters/sql.py:290: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/sql.py:290: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/sql.py:293: error: Returning Any from function declared to return "str"  [no-any-return]
src/modelable/emitters/sql.py:317: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/sql.py:317: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/sql.py:322: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/sql.py:354: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/sql.py:354: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/sql.py:387: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/sql.py:387: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/emitters/typescript.py:109: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/typescript.py:131: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/typescript.py:171: error: Argument "wire_targets" to "_type_to_ts" has incompatible type "dict[str, WireTargetHint]"; expected "dict[str, object] | None"  [arg-type]
src/modelable/emitters/typescript.py:189: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/typescript.py:214: error: Argument 1 to "_resolve_projection_field_type" has incompatible type "ProjectionField"; expected "FieldDef"  [arg-type]
src/modelable/emitters/typescript.py:220: error: Argument "wire_targets" to "_type_to_ts" has incompatible type "dict[str, WireTargetHint]"; expected "dict[str, object] | None"  [arg-type]
src/modelable/emitters/typescript.py:274: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/emitters/typescript.py:274: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/typescript.py:279: error: "FieldDef" has no attribute "mapping"  [attr-defined]
src/modelable/emitters/typescript.py:291: error: "FieldDef" has no attribute "mapping"  [attr-defined]
src/modelable/emitters/typescript.py:292: error: Item "ProjectionField" of "FieldDef | ProjectionField" has no attribute "type"  [union-attr]
src/modelable/emitters/typescript.py:296: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/typescript.py:325: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/emitters/typescript.py:39: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/emitters/typescript.py:400: error: Argument "wire_targets" to "_type_to_ts" has incompatible type "dict[str, WireTargetHint]"; expected "dict[str, object] | None"  [arg-type]
src/modelable/emitters/typescript.py:41: error: Argument 3 to "_emit_projection" has incompatible type "ModelVersion"; expected "ProjectionVersion"  [arg-type]
src/modelable/emitters/typescript.py:89: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/governance/checker.py:262: error: Incompatible types in assignment (expression has type "tuple[str, ModelVersion | ProjectionVersion]", target has type "tuple[str, ModelVersion]")  [assignment]
src/modelable/graph/export.py:122: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/graph/export.py:331: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/graph/export.py:357: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/llm/engine.py:117: error: Argument "change_kind" to "ModelVersion" has incompatible type "str"; expected "ChangeKind"  [arg-type]
src/modelable/llm/engine.py:274: error: Argument "env" to "resolve_llm_config" has incompatible type "_Environ[str]"; expected "dict[str, str] | None"  [arg-type]
src/modelable/llm/engine.py:558: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/llm/engine.py:564: error: Returning Any from function declared to return "Path | None"  [no-any-return]
src/modelable/llm/engine.py:568: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/llm/importers.py:1007: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/llm/importers.py:1033: error: Need type annotation for "current" (hint: "current: list[<type>] = ...")  [var-annotated]
src/modelable/llm/importers.py:1053: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/llm/importers.py:210: error: Item "None" of "dict[str, Any] | None" has no attribute "get"  [union-attr]
src/modelable/llm/importers.py:213: error: Argument 1 to "_dbt_columns_for_selected_model" has incompatible type "dict[str, Any] | None"; expected "dict[str, Any]"  [arg-type]
src/modelable/llm/importers.py:214: error: Argument 1 to "_dbt_unique_keys" has incompatible type "dict[str, Any] | None"; expected "dict[str, Any]"  [arg-type]
src/modelable/llm/importers.py:218: error: Argument 1 to "_dbt_modelable_version" has incompatible type "dict[str, Any] | None"; expected "dict[str, Any]"  [arg-type]
src/modelable/llm/importers.py:280: error: Value of type "dict[str, Any] | Any | None" is not indexable  [index]
src/modelable/llm/importers.py:283: error: Argument 1 to "_dbt_unique_keys" has incompatible type "dict[str, Any] | Any | None"; expected "dict[str, Any]"  [arg-type]
src/modelable/llm/importers.py:283: error: Item "None" of "dict[str, Any] | Any | None" has no attribute "get"  [union-attr]
src/modelable/llm/importers.py:287: error: Argument 1 to "_dbt_modelable_version" has incompatible type "dict[str, Any] | Any | None"; expected "dict[str, Any]"  [arg-type]
src/modelable/llm/importers.py:308: error: Incompatible types in assignment (expression has type "dict[str, Any] | None", variable has type "dict[str, Any]")  [assignment]
src/modelable/llm/importers.py:827: error: Argument "kind" to "PrimitiveType" has incompatible type "str"; expected "Literal['string', 'int', 'float', 'bool', 'date', 'time', 'timestamp', 'uuid', 'duration', 'binary', 'json', 'u8', 'u16', 'u32', 'u64', 'u128', 'i8', 'i16', 'i32', 'i64', 'i128']"  [arg-type]
src/modelable/llm/importers.py:885: error: Argument "kind" to "PrimitiveType" has incompatible type "str"; expected "Literal['string', 'int', 'float', 'bool', 'date', 'time', 'timestamp', 'uuid', 'duration', 'binary', 'json', 'u8', 'u16', 'u32', 'u64', 'u128', 'i8', 'i16', 'i32', 'i64', 'i128']"  [arg-type]
src/modelable/llm/importers.py:901: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/llm/importers.py:912: error: Missing type arguments for generic type "list"  [type-arg]
src/modelable/llm/importers.py:935: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/llm/importers.py:935: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/llm/importers.py:976: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/llm/importers.py:986: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/llm/importers.py:986: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/federation.py:221: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/lsp/inlay_hints.py:104: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/inlay_hints.py:111: error: Returning Any from function declared to return "str | None"  [no-any-return]
src/modelable/lsp/inlay_hints.py:118: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/lsp/inlay_hints.py:134: error: Returning Any from function declared to return "str | None"  [no-any-return]
src/modelable/lsp/server.py:41: error: Module "pygls.feature_manager" does not explicitly export attribute "asyncio"  [attr-defined]
src/modelable/lsp/server.py:41: error: Module has no attribute "iscoroutinefunction"  [attr-defined]
src/modelable/lsp/server.py:42: error: Module "pygls.protocol.json_rpc" does not explicitly export attribute "asyncio"  [attr-defined]
src/modelable/lsp/server.py:42: error: Module has no attribute "iscoroutinefunction"  [attr-defined]
src/modelable/lsp/server.py:52: error: Missing type arguments for generic type "Task"  [type-arg]
src/modelable/parser/parse.py:22: error: Missing type arguments for generic type "Tree"  [type-arg]
src/modelable/parser/parse.py:35: error: Missing type arguments for generic type "Tree"  [type-arg]
src/modelable/parser/parse.py:39: error: Missing type arguments for generic type "Tree"  [type-arg]
src/modelable/parser/transformer.py:1001: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:1004: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:1007: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:320: error: No overload variant of "int" matches argument type "object"  [call-overload]
src/modelable/parser/transformer.py:413: error: "object" object is not iterable  [misc]
src/modelable/parser/transformer.py:414: error: Cannot determine type of "target"  [has-type]
src/modelable/parser/transformer.py:415: error: Cannot determine type of "modifier"  [has-type]
src/modelable/parser/transformer.py:416: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:418: error: Cannot determine type of "target"  [has-type]
src/modelable/parser/transformer.py:418: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:420: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:421: error: Cannot determine type of "modifier"  [has-type]
src/modelable/parser/transformer.py:422: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:423: error: Cannot determine type of "target"  [has-type]
src/modelable/parser/transformer.py:423: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:424: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:425: error: Cannot determine type of "modifier"  [has-type]
src/modelable/parser/transformer.py:426: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:427: error: Cannot determine type of "target"  [has-type]
src/modelable/parser/transformer.py:427: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:428: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:429: error: Cannot determine type of "modifier"  [has-type]
src/modelable/parser/transformer.py:430: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:432: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:434: error: Cannot determine type of "target"  [has-type]
src/modelable/parser/transformer.py:435: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:437: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:438: error: Cannot determine type of "modifier"  [has-type]
src/modelable/parser/transformer.py:439: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:441: error: Cannot determine type of "target"  [has-type]
src/modelable/parser/transformer.py:441: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:443: error: Cannot determine type of "value"  [has-type]
src/modelable/parser/transformer.py:445: error: Cannot determine type of "modifier"  [has-type]
src/modelable/parser/transformer.py:446: error: Cannot determine type of "target"  [has-type]
src/modelable/parser/transformer.py:467: error: "object" object is not iterable  [misc]
src/modelable/parser/transformer.py:468: error: Cannot determine type of "modifier"  [has-type]
src/modelable/parser/transformer.py:468: error: Cannot determine type of "target"  [has-type]
src/modelable/parser/transformer.py:482: error: Argument 1 to "dict" has incompatible type "list[object]"; expected "Iterable[tuple[str, object]]"  [arg-type]
src/modelable/parser/transformer.py:517: error: No overload variant of "int" matches argument type "object"  [call-overload]
src/modelable/parser/transformer.py:565: error: No overload variant of "int" matches argument type "object"  [call-overload]
src/modelable/parser/transformer.py:568: error: No overload variant of "int" matches argument type "object"  [call-overload]
src/modelable/parser/transformer.py:577: error: Argument "item" to "ArrayType" has incompatible type "object"; expected "PrimitiveType | DecimalType | FixedBinaryType | ArrayType | MapType | RefType | EnumType | ObjectType | NamedType"  [arg-type]
src/modelable/parser/transformer.py:580: error: Argument "key" to "MapType" has incompatible type "object"; expected "PrimitiveType | DecimalType | FixedBinaryType | ArrayType | MapType | RefType | EnumType | ObjectType | NamedType"  [arg-type]
src/modelable/parser/transformer.py:580: error: Argument "value" to "MapType" has incompatible type "object"; expected "PrimitiveType | DecimalType | FixedBinaryType | ArrayType | MapType | RefType | EnumType | ObjectType | NamedType"  [arg-type]
src/modelable/parser/transformer.py:584: error: Argument "version" to "RefType" has incompatible type "object"; expected "VersionExact | VersionRange | VersionMin | VersionPinned | None"  [arg-type]
src/modelable/parser/transformer.py:613: error: "object" object is not iterable  [misc]
src/modelable/parser/transformer.py:619: error: No overload variant of "int" matches argument type "object"  [call-overload]
src/modelable/parser/transformer.py:632: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:635: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:638: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:641: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:644: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:649: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:652: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:655: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:666: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:682: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:685: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:688: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:691: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:694: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:697: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:700: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:703: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:706: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:709: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:712: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:715: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:725: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:734: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:737: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:747: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:760: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:763: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:773: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:776: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:779: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:782: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:785: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:788: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:791: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:794: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:797: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:800: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:803: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:806: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:830: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:833: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:836: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:839: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:842: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:845: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:848: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:851: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:854: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:857: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:860: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:869: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:872: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:875: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:878: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:881: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:884: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:887: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:890: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:893: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:896: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:899: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:902: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:905: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:908: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:911: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:929: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:932: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:935: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:940: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:943: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:972: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:975: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:978: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:981: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:984: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:995: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/parser/transformer.py:998: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/planner/plans.py:103: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/planner/plans.py:114: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/planner/plans.py:21: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/planner/plans.py:36: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/planner/plans.py:88: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/planner/plans.py:94: error: Missing type arguments for generic type "dict"  [type-arg]
src/modelable/planner/plans.py:98: error: Item "ProjectionVersion" of "ModelVersion | ProjectionVersion" has no attribute "change_kind"  [union-attr]
src/modelable/registry/__init__.py:4: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/registry/index.py:123: error: Incompatible types in assignment (expression has type "list[ProjectionVersion]", variable has type "list[ModelVersion]")  [assignment]
src/modelable/registry/index.py:142: error: "ModelVersion" has no attribute "source"  [attr-defined]
src/modelable/registry/index.py:146: error: "ModelVersion" has no attribute "source"  [attr-defined]
src/modelable/registry/index.py:147: error: "ModelVersion" has no attribute "source"  [attr-defined]
src/modelable/registry/index.py:150: error: "ModelVersion" has no attribute "source"  [attr-defined]
src/modelable/registry/index.py:167: error: "ModelVersion" has no attribute "source"  [attr-defined]
src/modelable/registry/index.py:171: error: "ModelVersion" has no attribute "source"  [attr-defined]
src/modelable/registry/index.py:172: error: "ModelVersion" has no attribute "source"  [attr-defined]
src/modelable/registry/index.py:175: error: "ModelVersion" has no attribute "source"  [attr-defined]
src/modelable/registry/index.py:178: error: "ModelVersion" has no attribute "joins"  [attr-defined]
src/modelable/registry/index.py:217: error: "FieldDef" has no attribute "mapping"  [attr-defined]
src/modelable/registry/index.py:228: error: "FieldDef" has no attribute "mapping"  [attr-defined]
src/modelable/registry/index.py:368: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/registry/index.py:399: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/registry/index.py:435: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/registry/resolver.py:229: error: Argument 1 to "extend" of "list" has incompatible type "list[ProjectionVersion]"; expected "Iterable[ModelVersion]"  [arg-type]
src/modelable/validation/deferred_syntax.py:43: error: Missing type arguments for generic type "Tree"  [type-arg]
src/modelable/validation/semantic.py:131: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/validation/semantic.py:213: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/validation/semantic.py:242: error: Call to untyped function "_resolve_projection_field_type" in typed context  [no-untyped-call]
src/modelable/validation/semantic.py:299: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/validation/semantic.py:351: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/validation/semantic.py:488: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/validation/semantic.py:534: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/validation/semantic.py:589: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/validation/semantic.py:670: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/validation/semantic.py:733: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
src/modelable/validation/semantic.py:73: error: Missing type arguments for generic type "Match"  [type-arg]
src/modelable/validation/semantic.py:765: error: Function is missing a type annotation  [no-untyped-def]
src/modelable/validation/semantic.py:792: error: Function is missing a return type annotation  [no-untyped-def]
src/modelable/validation/semantic.py:792: error: Function is missing a type annotation for one or more parameters  [no-untyped-def]
