basedmypy icon indicating copy to clipboard operation
basedmypy copied to clipboard

Allow typing members in annotations without imports

Open KotlinIsland opened this issue 3 years ago • 6 comments

from typing import A, B, C, D, E, F, G, H, ..., AMONGUS, ..., X, Y, X

NO THANKS!

Also a based implicit T

What about implicit basedtyping?

closes #2

KotlinIsland avatar Dec 01 '21 06:12 KotlinIsland

what about a based implicit Fn?

KotlinIsland avatar Dec 16 '21 17:12 KotlinIsland

Diff from mypy_primer, showing the effect of this PR on open source code:

edgedb (https://github.com/edgedb/edgedb)
+ edb/schema/types.py:67:39: error: Missing type parameters for generic type "Type"  [type-arg]
+ edb/schema/types.py:68:45: error: Missing type parameters for generic type "Type"  [type-arg]
+ edb/schema/types.py:70:59: error: Missing type parameters for generic type "Collection"  [type-arg]
+ edb/schema/types.py:72:33: error: Missing type parameters for generic type "Collection"  [type-arg]
+ edb/schema/types.py:569:30: error: Type argument "TypeT_co" of "TypeShell" must be a subtype of "Type"  [type-var]
+ edb/schema/types.py:1456:43: error: Missing type parameters for generic type "Tuple"  [type-arg]
+ edb/schema/types.py:1457:49: error: Missing type parameters for generic type "Tuple"  [type-arg]
+ edb/schema/constraints.py:788:33: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/schema/constraints.py:788:33: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/schema/constraints.py:788:33: error: Expression has type "Any"  [misc]
+ edb/schema/constraints.py:802:27: error: Incompatible types in assignment (expression has type "Set[Any]", variable has type "edb.ir.ast.Set")  [assignment]
+ edb/schema/pointers.py:1131:21: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/schema/pointers.py:1131:21: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/schema/pointers.py:1131:21: error: Expression has type "Any"  [misc]
+ edb/ir/ast.py:414:13: error: Missing type parameters for generic type "Set"  [type-arg]
+ edb/ir/ast.py:415:13: error: Missing type parameters for generic type "Set"  [type-arg]
+ edb/ir/utils.py:220:18: error: Incompatible types in assignment (expression has type "Set[Any]", variable has type "edb.ir.ast.Set")  [assignment]
+ edb/ir/utils.py:256:17: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/ir/utils.py:258:8: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/ir/utils.py:258:8: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/ir/utils.py:258:8: error: Expression has type "Any"  [misc]
+ edb/ir/utils.py:278:18: error: Incompatible types in assignment (expression has type "Set[Any]", variable has type "edb.ir.ast.Set")  [assignment]
+ edb/ir/utils.py:294:23: error: Incompatible types in assignment (expression has type "Set[Any]", variable has type "Optional[edb.ir.ast.Set]")  [assignment]
+ edb/edgeql/compiler/inference/volatility.py:148:37: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/inference/volatility.py:148:37: error: Argument 1 to "_infer_volatility" has incompatible type "Set[Any]"; expected "Base"  [arg-type]
+ edb/edgeql/compiler/inference/volatility.py:151:33: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/inference/volatility.py:151:33: error: "Set[Any]" has no attribute "typeref"  [attr-defined]
+ edb/edgeql/compiler/inference/volatility.py:151:33: error: Expression has type "Any"  [misc]
+ edb/edgeql/compiler/inference/cardinality.py:535:13: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/inference/cardinality.py:535:13: error: Argument 1 to "infer_cardinality" has incompatible type "Set[Any]"; expected "Base"  [arg-type]
+ edb/edgeql/compiler/inference/cardinality.py:589:29: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/inference/cardinality.py:589:29: error: Argument 1 to "infer_cardinality" has incompatible type "Set[Any]"; expected "Base"  [arg-type]
+ edb/edgeql/compiler/inference/multiplicity.py:254:13: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/inference/multiplicity.py:254:13: error: Argument 1 to "infer_multiplicity" has incompatible type "Set[Any]"; expected "Base"  [arg-type]
+ edb/edgeql/compiler/inference/multiplicity.py:271:44: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/inference/multiplicity.py:271:44: error: Argument 1 to "find_visible" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/edgeql/compiler/viewgen.py:1538:34: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/viewgen.py:1538:34: error: Argument 1 to "late_compile_view_shapes" has incompatible type "Set[Any]"; expected "Base"  [arg-type]
+ edb/edgeql/compiler/typegen.py:228:21: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/typegen.py:228:21: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/edgeql/compiler/typegen.py:228:21: error: Expression has type "Any"  [misc]
+ edb/edgeql/compiler/typegen.py:230:35: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/typegen.py:230:35: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/edgeql/compiler/typegen.py:230:35: error: Expression has type "Any"  [misc]
+ edb/edgeql/compiler/typegen.py:231:41: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/typegen.py:231:41: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/edgeql/compiler/typegen.py:231:41: error: Expression has type "Any"  [misc]
+ edb/edgeql/compiler/setgen.py:345:48: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/setgen.py:345:48: error: Argument 1 to "get_set_type" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/edgeql/compiler/setgen.py:474:33: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/setgen.py:478:40: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/setgen.py:478:40: error: Argument 1 to "scoped_set" has incompatible type "Set[Any]"; expected "Union[edb.ir.ast.Set, Expr]"  [arg-type]
+ edb/edgeql/compiler/setgen.py:1199:24: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/setgen.py:1217:32: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/setgen.py:1217:32: error: Argument 1 to "get_set_type" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/edgeql/compiler/setgen.py:1218:46: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/setgen.py:1218:46: error: Argument 1 to "fixup_computable_source_set" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/edgeql/compiler/setgen.py:1314:26: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/setgen.py:1314:26: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/edgeql/compiler/setgen.py:1314:26: error: Expression has type "Any"  [misc]
+ edb/edgeql/compiler/setgen.py:1316:20: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/setgen.py:1316:20: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/edgeql/compiler/setgen.py:1316:20: error: Expression has type "Any"  [misc]
+ edb/edgeql/compiler/setgen.py:1317:16: error: Expression has type "Any"  [misc]
+ edb/edgeql/compiler/setgen.py:1318:26: error: Expression has type "Any"  [misc]
+ edb/edgeql/compiler/setgen.py:1321:9: error: Expression has type "Any"  [misc]
+ edb/edgeql/compiler/setgen.py:1371:50: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/setgen.py:1371:50: error: Argument 1 to "get_set_scope" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/edgeql/compiler/setgen.py:1378:17: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/setgen.py:1378:17: error: Argument 1 to "new_set_from_set" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/edgeql/compiler/setgen.py:1379:22: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/setgen.py:1379:22: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/edgeql/compiler/setgen.py:1379:22: error: Expression has type "Any"  [misc]
+ edb/edgeql/compiler/setgen.py:1474:50: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/setgen.py:1474:50: error: Argument 1 to "get_set_scope" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/edgeql/compiler/setgen.py:1525:17: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/setgen.py:1525:17: error: Argument 1 to "new_set_from_set" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/edgeql/compiler/setgen.py:1525:35: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/edgeql/compiler/setgen.py:1525:35: error: Expression has type "Any"  [misc]
+ edb/edgeql/compiler/eta_expand.py:171:24: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/eta_expand.py:171:24: error: "Set[Any]" has no attribute "expr"  [attr-defined]
+ edb/edgeql/compiler/eta_expand.py:171:24: error: Expression has type "Any"  [misc]
+ edb/edgeql/compiler/eta_expand.py:174:27: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/eta_expand.py:174:27: error: "Set[Any]" has no attribute "expr"  [attr-defined]
+ edb/edgeql/compiler/conflicts.py:411:12: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/conflicts.py:411:12: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/edgeql/compiler/conflicts.py:411:12: error: Expression has type "Any"  [misc]
+ edb/edgeql/compiler/stmt.py:1107:21: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/stmt.py:1107:21: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/edgeql/compiler/stmt.py:1115:13: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/stmt.py:1115:13: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/edgeql/compiler/stmt.py:1115:13: error: Expression has type "Any"  [misc]
+ edb/edgeql/compiler/stmt.py:1118:16: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/stmt.py:1118:16: error: "Set[Any]" has no attribute "typeref"  [attr-defined]
+ edb/edgeql/compiler/stmt.py:1118:16: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/astutils.py:46:16: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/astutils.py:46:16: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/pgsql/compiler/astutils.py:46:16: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/astutils.py:49:12: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/astutils.py:50:14: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/astutils.py:51:15: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/astutils.py:56:18: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/astutils.py:62:18: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:428:13: error: Expression type contains "Any" (has type "Union[Literal[False], Any]")  [misc]
+ edb/pgsql/compiler/relctx.py:429:21: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relctx.py:429:21: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/pgsql/compiler/relctx.py:429:21: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:430:20: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relctx.py:430:20: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/pgsql/compiler/relctx.py:435:13: error: Item "None" of "Optional[Pointer]" has no attribute "is_inbound"  [union-attr]
+ edb/pgsql/compiler/relctx.py:435:13: error: Expression type contains "Any" (has type "Union[bool, Any]")  [misc]
+ edb/pgsql/compiler/relctx.py:435:13: error: Expression type contains "Any" (has type "Union[BasePointerRef, Any, None, bool]")  [misc]
+ edb/pgsql/compiler/relctx.py:435:13: error: Expression type contains "Any" (has type "Union[Any, BasePointerRef, None, bool]")  [misc]
+ edb/pgsql/compiler/relctx.py:437:17: error: Expression type contains "Any" (has type "Union[BasePointerRef, Any]")  [misc]
+ edb/pgsql/compiler/relctx.py:438:39: error: Item "None" of "Optional[Pointer]" has no attribute "ptrref"  [union-attr]
+ edb/pgsql/compiler/relctx.py:438:39: error: Expression type contains "Any" (has type "Union[BasePointerRef, Any]")  [misc]
+ edb/pgsql/compiler/relctx.py:439:42: error: Item "None" of "Optional[Pointer]" has no attribute "ptrref"  [union-attr]
+ edb/pgsql/compiler/relctx.py:439:42: error: Expression type contains "Any" (has type "Union[BasePointerRef, Any]")  [misc]
+ edb/pgsql/compiler/relctx.py:442:21: error: Expression type contains "Any" (has type "Union[BasePointerRef, Any]")  [misc]
+ edb/pgsql/compiler/relctx.py:450:48: error: Expression type contains "Any" (has type "Union[BasePointerRef, Any]")  [misc]
+ edb/pgsql/compiler/relctx.py:507:30: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relctx.py:507:30: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relctx.py:507:30: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:512:19: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relctx.py:512:19: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relctx.py:512:19: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:514:19: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relctx.py:514:19: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relctx.py:514:19: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:517:19: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:519:42: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:520:44: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:529:47: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relctx.py:529:47: error: Argument 1 to "get_nearest_dml_stmt" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/pgsql/compiler/relctx.py:548:15: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relctx.py:548:15: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relctx.py:548:15: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:549:15: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relctx.py:549:15: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relctx.py:549:15: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:550:15: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:553:42: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:554:44: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:556:44: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:558:44: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:561:8: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:562:46: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:563:48: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:1653:15: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relctx.py:1653:15: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relctx.py:1653:15: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:1654:48: error: Expression type contains "Any" (has type "Tuple[Any, str]")  [misc]
+ edb/pgsql/compiler/relctx.py:1654:49: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:1663:48: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:646:36: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:646:36: error: "Set[Any]" has no attribute "typeref"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:646:36: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:677:17: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:688:33: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:688:33: error: Argument 1 to "get_set_rvar" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/pgsql/compiler/relgen.py:691:23: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:691:23: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:691:23: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:709:52: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:709:52: error: Argument 1 to "collapse_type_intersection" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/pgsql/compiler/relgen.py:715:27: error: Incompatible types in assignment (expression has type "Set[Any]", variable has type "edb.ir.ast.Set")  [assignment]
+ edb/pgsql/compiler/relgen.py:718:13: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:718:13: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:718:13: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:724:37: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:724:37: error: Argument 1 to "get_set_rvar" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/pgsql/compiler/relgen.py:782:17: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:785:17: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:785:17: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:785:17: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:786:21: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:786:21: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:786:21: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:787:21: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:787:21: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:787:21: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:791:21: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:791:21: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:791:21: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:800:43: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:800:43: error: Invalid index type "Set[Any]" for "Dict[edb.ir.ast.Set, edb.ir.ast.Set]"; expected type "edb.ir.ast.Set"  [index]
+ edb/pgsql/compiler/relgen.py:801:40: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:801:40: error: Argument 1 to "get_set_rvar" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/pgsql/compiler/relgen.py:803:55: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:803:55: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:803:55: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:807:36: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:807:36: error: Argument 1 to "get_set_rvar" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/pgsql/compiler/relgen.py:810:16: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:810:16: error: "Set[Any]" has no attribute "typeref"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:810:16: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:811:40: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:811:40: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:812:21: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:812:35: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:812:35: error: "Set[Any]" has no attribute "typeref"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:816:21: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:816:21: error: "Set[Any]" has no attribute "typeref"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:816:21: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:820:44: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:855:52: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:855:52: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:855:52: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:860:17: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:860:17: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:860:17: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:884:17: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:885:51: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:885:51: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:885:51: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:908:25: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:909:35: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:909:35: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:909:35: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:911:16: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:911:16: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:911:16: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:912:15: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:912:15: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:912:15: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:913:29: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:913:29: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:913:29: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:914:39: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:914:39: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:914:39: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:924:44: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:924:44: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:924:44: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:927:19: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:927:19: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:927:19: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:928:45: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:929:28: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:930:21: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:931:53: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:935:13: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:940:42: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:954:17: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:962:37: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:962:37: error: Argument 1 to "get_set_rvar" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/pgsql/compiler/relgen.py:966:20: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:966:20: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:966:20: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:967:47: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:967:47: error: Argument 1 to "ensure_source_rvar" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/pgsql/compiler/relgen.py:973:16: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:973:16: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:973:16: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:974:21: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:974:21: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:974:21: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:975:33: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:975:33: error: Argument 1 to "get_set_rvar" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/pgsql/compiler/relgen.py:979:26: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:979:26: error: Argument 1 to "get_set_rvar" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/pgsql/compiler/relgen.py:984:36: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:984:36: error: Argument 1 to "ensure_source_rvar" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/pgsql/compiler/relgen.py:995:53: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:995:53: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:995:53: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:996:31: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:996:31: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:996:31: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:1006:32: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:1006:32: error: Argument 1 to "ensure_source_rvar" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/pgsql/compiler/relgen.py:1017:32: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:1017:32: error: Argument 1 to "ensure_source_rvar" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/pgsql/compiler/relgen.py:1028:43: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:1028:43: error: Argument 1 to "ensure_source_rvar" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/pgsql/compiler/relgen.py:1031:37: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:1031:37: error: Argument 1 to "get_set_rvar" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/pgsql/compiler/relgen.py:1115:21: error: Incompatible types in assignment (expression has type "Set[Any]", variable has type "Optional[edb.ir.ast.Set]")  [assignment]
+ edb/pgsql/compiler/relgen.py:1123:56: error: Item "None" of "Optional[edb.ir.ast.Set]" has no attribute "path_id"  [union-attr]
+ edb/pgsql/compiler/relgen.py:1123:56: error: Expression type contains "Any" (has type "Union[PathId, Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:1126:26: error: Argument 1 to "get_set_rvar" has incompatible type "Optional[edb.ir.ast.Set]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/pgsql/compiler/relgen.py:1131:32: error: Argument 1 to "ensure_source_rvar" has incompatible type "Optional[edb.ir.ast.Set]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/pgsql/compiler/relgen.py:1772:17: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:1781:17: ```

github-actions[bot] avatar Jan 07 '22 03:01 github-actions[bot]

Diff from mypy_primer, showing the effect of this PR on open source code:

edgedb (https://github.com/edgedb/edgedb)
+ edb/schema/types.py:67:39: error: Missing type parameters for generic type "Type"  [type-arg]
+ edb/schema/types.py:68:45: error: Missing type parameters for generic type "Type"  [type-arg]
+ edb/schema/types.py:70:59: error: Missing type parameters for generic type "Collection"  [type-arg]
+ edb/schema/types.py:72:33: error: Missing type parameters for generic type "Collection"  [type-arg]
+ edb/schema/types.py:569:30: error: Type argument "TypeT_co" of "TypeShell" must be a subtype of "Type"  [type-var]
+ edb/schema/types.py:1456:43: error: Missing type parameters for generic type "Tuple"  [type-arg]
+ edb/schema/types.py:1457:49: error: Missing type parameters for generic type "Tuple"  [type-arg]
+ edb/schema/constraints.py:788:33: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/schema/constraints.py:788:33: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/schema/constraints.py:788:33: error: Expression has type "Any"  [misc]
+ edb/schema/constraints.py:802:27: error: Incompatible types in assignment (expression has type "Set[Any]", variable has type "edb.ir.ast.Set")  [assignment]
+ edb/schema/pointers.py:1131:21: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/schema/pointers.py:1131:21: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/schema/pointers.py:1131:21: error: Expression has type "Any"  [misc]
+ edb/ir/ast.py:414:13: error: Missing type parameters for generic type "Set"  [type-arg]
+ edb/ir/ast.py:415:13: error: Missing type parameters for generic type "Set"  [type-arg]
+ edb/ir/utils.py:220:18: error: Incompatible types in assignment (expression has type "Set[Any]", variable has type "edb.ir.ast.Set")  [assignment]
+ edb/ir/utils.py:256:17: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/ir/utils.py:258:8: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/ir/utils.py:258:8: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/ir/utils.py:258:8: error: Expression has type "Any"  [misc]
+ edb/ir/utils.py:278:18: error: Incompatible types in assignment (expression has type "Set[Any]", variable has type "edb.ir.ast.Set")  [assignment]
+ edb/ir/utils.py:294:23: error: Incompatible types in assignment (expression has type "Set[Any]", variable has type "Optional[edb.ir.ast.Set]")  [assignment]
+ edb/edgeql/compiler/inference/volatility.py:148:37: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/inference/volatility.py:148:37: error: Argument 1 to "_infer_volatility" has incompatible type "Set[Any]"; expected "Base"  [arg-type]
+ edb/edgeql/compiler/inference/volatility.py:151:33: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/inference/volatility.py:151:33: error: "Set[Any]" has no attribute "typeref"  [attr-defined]
+ edb/edgeql/compiler/inference/volatility.py:151:33: error: Expression has type "Any"  [misc]
+ edb/edgeql/compiler/inference/cardinality.py:535:13: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/inference/cardinality.py:535:13: error: Argument 1 to "infer_cardinality" has incompatible type "Set[Any]"; expected "Base"  [arg-type]
+ edb/edgeql/compiler/inference/cardinality.py:589:29: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/inference/cardinality.py:589:29: error: Argument 1 to "infer_cardinality" has incompatible type "Set[Any]"; expected "Base"  [arg-type]
+ edb/edgeql/compiler/inference/multiplicity.py:254:13: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/inference/multiplicity.py:254:13: error: Argument 1 to "infer_multiplicity" has incompatible type "Set[Any]"; expected "Base"  [arg-type]
+ edb/edgeql/compiler/inference/multiplicity.py:271:44: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/inference/multiplicity.py:271:44: error: Argument 1 to "find_visible" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/edgeql/compiler/viewgen.py:1538:34: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/viewgen.py:1538:34: error: Argument 1 to "late_compile_view_shapes" has incompatible type "Set[Any]"; expected "Base"  [arg-type]
+ edb/edgeql/compiler/typegen.py:228:21: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/typegen.py:228:21: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/edgeql/compiler/typegen.py:228:21: error: Expression has type "Any"  [misc]
+ edb/edgeql/compiler/typegen.py:230:35: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/typegen.py:230:35: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/edgeql/compiler/typegen.py:230:35: error: Expression has type "Any"  [misc]
+ edb/edgeql/compiler/typegen.py:231:41: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/typegen.py:231:41: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/edgeql/compiler/typegen.py:231:41: error: Expression has type "Any"  [misc]
+ edb/edgeql/compiler/setgen.py:345:48: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/setgen.py:345:48: error: Argument 1 to "get_set_type" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/edgeql/compiler/setgen.py:474:33: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/setgen.py:478:40: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/setgen.py:478:40: error: Argument 1 to "scoped_set" has incompatible type "Set[Any]"; expected "Union[edb.ir.ast.Set, Expr]"  [arg-type]
+ edb/edgeql/compiler/setgen.py:1199:24: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/setgen.py:1217:32: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/setgen.py:1217:32: error: Argument 1 to "get_set_type" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/edgeql/compiler/setgen.py:1218:46: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/setgen.py:1218:46: error: Argument 1 to "fixup_computable_source_set" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/edgeql/compiler/setgen.py:1314:26: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/setgen.py:1314:26: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/edgeql/compiler/setgen.py:1314:26: error: Expression has type "Any"  [misc]
+ edb/edgeql/compiler/setgen.py:1316:20: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/setgen.py:1316:20: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/edgeql/compiler/setgen.py:1316:20: error: Expression has type "Any"  [misc]
+ edb/edgeql/compiler/setgen.py:1317:16: error: Expression has type "Any"  [misc]
+ edb/edgeql/compiler/setgen.py:1318:26: error: Expression has type "Any"  [misc]
+ edb/edgeql/compiler/setgen.py:1321:9: error: Expression has type "Any"  [misc]
+ edb/edgeql/compiler/setgen.py:1371:50: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/setgen.py:1371:50: error: Argument 1 to "get_set_scope" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/edgeql/compiler/setgen.py:1378:17: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/setgen.py:1378:17: error: Argument 1 to "new_set_from_set" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/edgeql/compiler/setgen.py:1379:22: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/setgen.py:1379:22: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/edgeql/compiler/setgen.py:1379:22: error: Expression has type "Any"  [misc]
+ edb/edgeql/compiler/setgen.py:1474:50: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/setgen.py:1474:50: error: Argument 1 to "get_set_scope" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/edgeql/compiler/setgen.py:1525:17: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/setgen.py:1525:17: error: Argument 1 to "new_set_from_set" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/edgeql/compiler/setgen.py:1525:35: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/edgeql/compiler/setgen.py:1525:35: error: Expression has type "Any"  [misc]
+ edb/edgeql/compiler/eta_expand.py:171:24: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/eta_expand.py:171:24: error: "Set[Any]" has no attribute "expr"  [attr-defined]
+ edb/edgeql/compiler/eta_expand.py:171:24: error: Expression has type "Any"  [misc]
+ edb/edgeql/compiler/eta_expand.py:174:27: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/eta_expand.py:174:27: error: "Set[Any]" has no attribute "expr"  [attr-defined]
+ edb/edgeql/compiler/conflicts.py:411:12: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/conflicts.py:411:12: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/edgeql/compiler/conflicts.py:411:12: error: Expression has type "Any"  [misc]
+ edb/edgeql/compiler/stmt.py:1107:21: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/stmt.py:1107:21: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/edgeql/compiler/stmt.py:1115:13: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/stmt.py:1115:13: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/edgeql/compiler/stmt.py:1115:13: error: Expression has type "Any"  [misc]
+ edb/edgeql/compiler/stmt.py:1118:16: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/edgeql/compiler/stmt.py:1118:16: error: "Set[Any]" has no attribute "typeref"  [attr-defined]
+ edb/edgeql/compiler/stmt.py:1118:16: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/astutils.py:46:16: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/astutils.py:46:16: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/pgsql/compiler/astutils.py:46:16: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/astutils.py:49:12: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/astutils.py:50:14: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/astutils.py:51:15: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/astutils.py:56:18: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/astutils.py:62:18: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:428:13: error: Expression type contains "Any" (has type "Union[Literal[False], Any]")  [misc]
+ edb/pgsql/compiler/relctx.py:429:21: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relctx.py:429:21: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/pgsql/compiler/relctx.py:429:21: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:430:20: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relctx.py:430:20: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/pgsql/compiler/relctx.py:435:13: error: Item "None" of "Optional[Pointer]" has no attribute "is_inbound"  [union-attr]
+ edb/pgsql/compiler/relctx.py:435:13: error: Expression type contains "Any" (has type "Union[bool, Any]")  [misc]
+ edb/pgsql/compiler/relctx.py:435:13: error: Expression type contains "Any" (has type "Union[BasePointerRef, Any, None, bool]")  [misc]
+ edb/pgsql/compiler/relctx.py:435:13: error: Expression type contains "Any" (has type "Union[Any, BasePointerRef, None, bool]")  [misc]
+ edb/pgsql/compiler/relctx.py:437:17: error: Expression type contains "Any" (has type "Union[BasePointerRef, Any]")  [misc]
+ edb/pgsql/compiler/relctx.py:438:39: error: Item "None" of "Optional[Pointer]" has no attribute "ptrref"  [union-attr]
+ edb/pgsql/compiler/relctx.py:438:39: error: Expression type contains "Any" (has type "Union[BasePointerRef, Any]")  [misc]
+ edb/pgsql/compiler/relctx.py:439:42: error: Item "None" of "Optional[Pointer]" has no attribute "ptrref"  [union-attr]
+ edb/pgsql/compiler/relctx.py:439:42: error: Expression type contains "Any" (has type "Union[BasePointerRef, Any]")  [misc]
+ edb/pgsql/compiler/relctx.py:442:21: error: Expression type contains "Any" (has type "Union[BasePointerRef, Any]")  [misc]
+ edb/pgsql/compiler/relctx.py:450:48: error: Expression type contains "Any" (has type "Union[BasePointerRef, Any]")  [misc]
+ edb/pgsql/compiler/relctx.py:507:30: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relctx.py:507:30: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relctx.py:507:30: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:512:19: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relctx.py:512:19: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relctx.py:512:19: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:514:19: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relctx.py:514:19: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relctx.py:514:19: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:517:19: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:519:42: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:520:44: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:529:47: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relctx.py:529:47: error: Argument 1 to "get_nearest_dml_stmt" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/pgsql/compiler/relctx.py:548:15: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relctx.py:548:15: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relctx.py:548:15: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:549:15: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relctx.py:549:15: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relctx.py:549:15: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:550:15: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:553:42: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:554:44: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:556:44: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:558:44: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:561:8: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:562:46: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:563:48: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:1653:15: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relctx.py:1653:15: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relctx.py:1653:15: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:1654:48: error: Expression type contains "Any" (has type "Tuple[Any, str]")  [misc]
+ edb/pgsql/compiler/relctx.py:1654:49: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relctx.py:1663:48: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:646:36: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:646:36: error: "Set[Any]" has no attribute "typeref"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:646:36: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:677:17: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:688:33: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:688:33: error: Argument 1 to "get_set_rvar" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/pgsql/compiler/relgen.py:691:23: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:691:23: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:691:23: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:709:52: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:709:52: error: Argument 1 to "collapse_type_intersection" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/pgsql/compiler/relgen.py:715:27: error: Incompatible types in assignment (expression has type "Set[Any]", variable has type "edb.ir.ast.Set")  [assignment]
+ edb/pgsql/compiler/relgen.py:718:13: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:718:13: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:718:13: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:724:37: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:724:37: error: Argument 1 to "get_set_rvar" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/pgsql/compiler/relgen.py:782:17: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:785:17: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:785:17: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:785:17: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:786:21: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:786:21: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:786:21: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:787:21: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:787:21: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:787:21: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:791:21: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:791:21: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:791:21: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:800:43: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:800:43: error: Invalid index type "Set[Any]" for "Dict[edb.ir.ast.Set, edb.ir.ast.Set]"; expected type "edb.ir.ast.Set"  [index]
+ edb/pgsql/compiler/relgen.py:801:40: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:801:40: error: Argument 1 to "get_set_rvar" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/pgsql/compiler/relgen.py:803:55: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:803:55: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:803:55: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:807:36: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:807:36: error: Argument 1 to "get_set_rvar" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/pgsql/compiler/relgen.py:810:16: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:810:16: error: "Set[Any]" has no attribute "typeref"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:810:16: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:811:40: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:811:40: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:812:21: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:812:35: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:812:35: error: "Set[Any]" has no attribute "typeref"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:816:21: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:816:21: error: "Set[Any]" has no attribute "typeref"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:816:21: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:820:44: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:855:52: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:855:52: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:855:52: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:860:17: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:860:17: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:860:17: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:884:17: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:885:51: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:885:51: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:885:51: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:908:25: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:909:35: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:909:35: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:909:35: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:911:16: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:911:16: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:911:16: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:912:15: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:912:15: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:912:15: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:913:29: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:913:29: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:913:29: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:914:39: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:914:39: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:914:39: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:924:44: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:924:44: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:924:44: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:927:19: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:927:19: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:927:19: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:928:45: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:929:28: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:930:21: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:931:53: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:935:13: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:940:42: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:954:17: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:962:37: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:962:37: error: Argument 1 to "get_set_rvar" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/pgsql/compiler/relgen.py:966:20: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:966:20: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:966:20: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:967:47: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:967:47: error: Argument 1 to "ensure_source_rvar" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/pgsql/compiler/relgen.py:973:16: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:973:16: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:973:16: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:974:21: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:974:21: error: "Set[Any]" has no attribute "rptr"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:974:21: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:975:33: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:975:33: error: Argument 1 to "get_set_rvar" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/pgsql/compiler/relgen.py:979:26: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:979:26: error: Argument 1 to "get_set_rvar" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/pgsql/compiler/relgen.py:984:36: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:984:36: error: Argument 1 to "ensure_source_rvar" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/pgsql/compiler/relgen.py:995:53: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:995:53: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:995:53: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:996:31: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:996:31: error: "Set[Any]" has no attribute "path_id"  [attr-defined]
+ edb/pgsql/compiler/relgen.py:996:31: error: Expression has type "Any"  [misc]
+ edb/pgsql/compiler/relgen.py:1006:32: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:1006:32: error: Argument 1 to "ensure_source_rvar" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/pgsql/compiler/relgen.py:1017:32: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:1017:32: error: Argument 1 to "ensure_source_rvar" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/pgsql/compiler/relgen.py:1028:43: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:1028:43: error: Argument 1 to "ensure_source_rvar" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/pgsql/compiler/relgen.py:1031:37: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:1031:37: error: Argument 1 to "get_set_rvar" has incompatible type "Set[Any]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/pgsql/compiler/relgen.py:1115:21: error: Incompatible types in assignment (expression has type "Set[Any]", variable has type "Optional[edb.ir.ast.Set]")  [assignment]
+ edb/pgsql/compiler/relgen.py:1123:56: error: Item "None" of "Optional[edb.ir.ast.Set]" has no attribute "path_id"  [union-attr]
+ edb/pgsql/compiler/relgen.py:1123:56: error: Expression type contains "Any" (has type "Union[PathId, Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:1126:26: error: Argument 1 to "get_set_rvar" has incompatible type "Optional[edb.ir.ast.Set]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/pgsql/compiler/relgen.py:1131:32: error: Argument 1 to "ensure_source_rvar" has incompatible type "Optional[edb.ir.ast.Set]"; expected "edb.ir.ast.Set"  [arg-type]
+ edb/pgsql/compiler/relgen.py:1772:17: error: Expression type contains "Any" (has type "Set[Any]")  [misc]
+ edb/pgsql/compiler/relgen.py:1781:17: ```

github-actions[bot] avatar Jan 07 '22 03:01 github-actions[bot]

According to mypy_primer, this change has no effect on the checked open source code. 🤖🎉

github-actions[bot] avatar Jul 20 '22 17:07 github-actions[bot]

According to mypy_primer, this change has no effect on the checked open source code. 🤖🎉

github-actions[bot] avatar Jul 21 '22 14:07 github-actions[bot]

Diff from mypy_primer, showing the effect of this PR on open source code:

pandera (https://github.com/pandera-dev/pandera)
+ pandera/schemas.py:65: error: INTERNAL ERROR -- Please try using mypy master on GitHub:
+ https://mypy.readthedocs.io/en/stable/common_issues.html#using-a-development-mypy-build
+ Please report a bug at https://github.com/KotlinIsland/basedmypy/issues
+ version: 1.5.0+dev.968f86df981feb03a3eb0e1d383b49e22fea8f7b
+ pandera/schemas.py:65: : note: use --pdb to drop into pdb
- pandera/error_formatters.py:10:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- pandera/error_formatters.py:22:9: error: Expression has type "Untyped"  [no-any-expr]
- pandera/error_formatters.py:27:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- pandera/error_formatters.py:27:1: error: Argument 4 to "format_vectorized_error_message" becomes "Any (from unimported type)" due to an unfollowed import  [no-any-unimported]
- pandera/error_formatters.py:43:9: error: Expression has type "Untyped"  [no-any-expr]
- pandera/error_formatters.py:43:9: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/error_formatters.py:48:1: error: Function is missing a type annotation for one or more arguments  [no-untyped-def]
- pandera/error_formatters.py:48:1: error: Return type becomes "Any (from unimported type)" due to an unfollowed import  [no-any-unimported]
- pandera/error_formatters.py:54:12: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/error_formatters.py:55:9: error: Expression type contains "Any" (has type "dict[str, list[Any (unannotated)]]")  [no-any-expr]
- pandera/error_formatters.py:57:29: error: Expression type contains "Any" (has type "list[Any (unannotated)]")  [no-any-expr]
- pandera/error_formatters.py:57:30: error: Expression has type "Untyped"  [no-any-expr]
- pandera/error_formatters.py:62:1: error: Return type becomes "Any (from unimported type)" due to an unfollowed import  [no-any-unimported]
- pandera/error_formatters.py:62:1: error: Argument 1 to "reshape_failure_cases" becomes "Any (from unimported type) | Any (from unimported type)" due to an unfollowed import  [no-any-unimported]
- pandera/error_formatters.py:77:9: error: Call to untyped function "is_table" in typed context  [no-untyped-call]
- pandera/error_formatters.py:77:9: error: Expression has type "Untyped"  [no-any-expr]
- pandera/error_formatters.py:77:9: error: Expression has type "Any (unannotated)"  [no-any-expr]
- pandera/error_formatters.py:77:30: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/error_formatters.py:78:12: error: Call to untyped function "is_field" in typed context  [no-untyped-call]
- pandera/error_formatters.py:78:12: error: Expression has type "Untyped"  [no-any-expr]
- pandera/error_formatters.py:78:33: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/error_formatters.py:81:13: error: Expression type contains "Any" (has type "type[Any (from unimported type)]")  [no-any-expr]
- pandera/error_formatters.py:82:21: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/error_formatters.py:86:9: error: Call to untyped function "is_table" in typed context  [no-untyped-call]
- pandera/error_formatters.py:86:9: error: Expression has type "Untyped"  [no-any-expr]
- pandera/error_formatters.py:86:9: error: Expression type contains "Any" (has type "Any (unannotated) | bool")  [no-any-expr]
- pandera/error_formatters.py:86:30: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/error_formatters.py:87:25: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/error_formatters.py:87:25: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/error_formatters.py:88:31: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/error_formatters.py:88:31: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/error_formatters.py:90:34: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/error_formatters.py:91:10: error: Call to untyped function "is_table" in typed context  [no-untyped-call]
- pandera/error_formatters.py:91:10: error: Expression has type "Untyped"  [no-any-expr]
- pandera/error_formatters.py:91:10: error: Expression has type "Any (unannotated)"  [no-any-expr]
- pandera/error_formatters.py:91:31: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/error_formatters.py:91:50: error: Call to untyped function "is_multiindex" in typed context  [no-untyped-call]
- pandera/error_formatters.py:92:9: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/error_formatters.py:92:9: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/error_formatters.py:95:13: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/error_formatters.py:95:13: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/error_formatters.py:97:23: error: Expression type contains "Any" (has type "(Untyped) -> Any")  [no-any-expr]
- pandera/error_formatters.py:98:21: error: Expression has type "Any"  [no-any-expr]
- pandera/error_formatters.py:106:10: error: Call to untyped function "is_field" in typed context  [no-untyped-call]
- pandera/error_formatters.py:106:10: error: Expression has type "Untyped"  [no-any-expr]
- pandera/error_formatters.py:106:10: error: Expression has type "Any (unannotated)"  [no-any-expr]
- pandera/error_formatters.py:106:31: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/error_formatters.py:106:50: error: Call to untyped function "is_multiindex" in typed context  [no-untyped-call]
- pandera/error_formatters.py:107:9: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/error_formatters.py:107:9: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/error_formatters.py:110:13: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/error_formatters.py:110:13: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/error_formatters.py:113:23: error: Expression type contains "Any" (has type "(Untyped) -> Any")  [no-any-expr]
- pandera/error_formatters.py:114:21: error: Expression has type "Any"  [no-any-expr]
- pandera/error_formatters.py:119:10: error: Call to untyped function "is_table" in typed context  [no-untyped-call]
- pandera/error_formatters.py:119:10: error: Expression has type "Untyped"  [no-any-expr]
- pandera/error_formatters.py:119:31: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/error_formatters.py:120:34: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/error_formatters.py:120:34: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/error_formatters.py:121:9: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/error_formatters.py:121:42: error: Expression type contains "Any" (has type "list[Any (from unimported type)]")  [no-any-expr]
- pandera/error_formatters.py:122:10: error: Call to untyped function "is_field" in typed context  [no-untyped-call]
- pandera/error_formatters.py:122:10: error: Expression has type "Untyped"  [no-any-expr]
- pandera/error_formatters.py:122:31: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/error_formatters.py:123:34: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/error_formatters.py:124:9: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/error_formatters.py:125:34: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/error_formatters.py:128:13: error: Expression type contains "Any" (has type "type[Any (from unimported type)]")  [no-any-expr]
- pandera/error_formatters.py:129:21: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/error_formatters.py:133:9: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/error_formatters.py:133:9: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/error_formatters.py:135:14: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/engines/utils.py:12:1: error: Return type becomes "Any (from unimported type)" due to an unfollowed import  [no-any-unimported]
- pandera/engines/utils.py:12:1: error: Argument 1 to "numpy_pandas_coercible" becomes "Any (from unimported type)" due to an unfollowed import  [no-any-unimported]
- pandera/engines/utils.py:12:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- pandera/engines/utils.py:23:44: error: Expression has type "Any"  [no-any-expr]
- pandera/engines/utils.py:25:5: error: Function is missing a type annotation  [no-untyped-def]
- pandera/engines/utils.py:27:36: error: Expression has type "Untyped"  [no-any-expr]
- pandera/engines/utils.py:32:12: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/utils.py:32:23: error: Expression type contains "Any" (has type "(Untyped) -> Untyped")  [no-any-expr]
- pandera/engines/utils.py:35:1: error: Return type becomes "Any (from unimported type) | Any (from unimported type) | Any (from unimported type)" due to an unfollowed import  [no-any-unimported]
- pandera/engines/utils.py:35:1: error: Argument 1 to "numpy_pandas_coerce_failure_cases" becomes "Any (from unimported type) | Any (from unimported type) | Any (from unimported type) | Any (from unimported type)" due to an unfollowed import  [no-any-unimported]
- pandera/engines/utils.py:35:1: error: Explicit "Any" is not allowed  [no-any-explicit]
- pandera/engines/utils.py:46:44: error: Expression has type "Any"  [no-any-expr]
- pandera/engines/utils.py:48:19: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type) | Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/engines/utils.py:48:35: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/utils.py:49:16: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/utils.py:50:30: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/utils.py:51:18: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/utils.py:52:30: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/utils.py:58:8: error: Call to untyped function "is_index" in typed context  [no-untyped-call]
- pandera/engines/utils.py:58:8: error: Expression has type "Untyped"  [no-any-expr]
- pandera/engines/utils.py:58:29: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type) | Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/engines/utils.py:59: error: Unused "type: ignore" comment  [unused-ignore]
- pandera/engines/utils.py:59:26: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type) | Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/engines/utils.py:59:26: note: Error code "no-any-expr" not covered by "type: ignore" comment
- pandera/engines/utils.py:61:8: error: Call to untyped function "is_table" in typed context  [no-untyped-call]
- pandera/engines/utils.py:61:8: error: Expression has type "Untyped"  [no-any-expr]
- pandera/engines/utils.py:61:29: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type) | Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/engines/utils.py:62: error: Unused "type: ignore" comment  [unused-ignore]
- pandera/engines/utils.py:62:24: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type) | Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/engines/utils.py:62:24: note: Error code "no-any-expr" not covered by "type: ignore" comment
- pandera/engines/utils.py:62:24: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/utils.py:63:13: error: Expression type contains "Any" (has type "(Any (from unimported type), Any) -> Any (from unimported type)")  [no-any-expr]
- pandera/engines/utils.py:66:28: error: Expression type contains "Any" (has type "(Any (from unimported type), Any (from unimported type))")  [no-any-expr]
- pandera/engines/utils.py:66:28: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/utils.py:67:13: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type) | Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/engines/utils.py:68:13: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/utils.py:71:10: error: Call to untyped function "is_field" in typed context  [no-untyped-call]
- pandera/engines/utils.py:71:10: error: Expression has type "Untyped"  [no-any-expr]
- pandera/engines/utils.py:71:31: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type) | Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/engines/utils.py:72:24: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/utils.py:72:47: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type) | Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/engines/utils.py:73:28: error: Expression type contains "Any" (has type "(Any (from unimported type), Any (from unimported type))")  [no-any-expr]
- pandera/engines/utils.py:73:28: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/utils.py:74:13: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type) | Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/engines/utils.py:75:13: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/utils.py:80:13: error: Expression type contains "Any" (has type "type[Any (from unimported type)]")  [no-any-expr]
- pandera/engines/utils.py:80:44: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type) | Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/engines/utils.py:83:12: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/utils.py:84:9: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/numpy_engine.py:20:2: error: Call to incomplete function "immutable" in typed context  [no-untyped-call]
- pandera/engines/numpy_engine.py:20:2: note: Type is "def (pandera_dtype_cls: type[Any (from omitted generics)] | None =, **dataclass_kwargs: Any) -> type[Any (from omitted generics)] | def (type[Any (from omitted generics)]) -> type[Any (from omitted generics)]"
- pandera/engines/numpy_engine.py:20:2: error: Expression type contains "Any" (has type "type[Any (from omitted generics)] | (type[Any (from omitted generics)]) -> type[Any (from omitted generics)]")  [no-any-expr]
- pandera/engines/numpy_engine.py:20:2: error: Expression type contains "Any" (has type "type[DataType]")  [no-any-expr]
- pandera/engines/numpy_engine.py:24:5: error: Type of variable becomes "Any (from unimported type)" due to an unfollowed import  [no-any-unimported]
- pandera/engines/numpy_engine.py:24:22: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/numpy_engine.py:25:17: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/numpy_engine.py:29:5: error: Explicit "Any" is not allowed  [no-any-explicit]
- pandera/engines/numpy_engine.py:30:9: error: Call to untyped function "__init__" of "DataType" in typed context  [no-untyped-call]
- pandera/engines/numpy_engine.py:31:42: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/numpy_engine.py:31:51: error: Expression has type "Any"  [no-any-expr]
- pandera/engines/numpy_engine.py:32:21: error: Expression type contains "Any" (has type "type[Any]")  [no-any-expr]
- pandera/engines/numpy_engine.py:32:21: error: Expression has type "Any"  [no-any-expr]
- pandera/engines/numpy_engine.py:34:13: error: Expression has type "Any"  [no-any-expr]
- pandera/engines/numpy_engine.py:40:5: error: Function is missing a return type annotation  [no-untyped-def]
- pandera/engines/numpy_engine.py:40:5: note: Use "-> None" if function does not return a value
- pandera/engines/numpy_engine.py:43:27: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/numpy_engine.py:46:5: error: Return type becomes "Any (from unimported type) | Any (from unimported type) | Any (from unimported type)" due to an unfollowed import  [no-any-unimported]
- pandera/engines/numpy_engine.py:46:5: error: Argument 2 to "coerce" becomes "Any (from unimported type) | Any (from unimported type) | Any (from unimported type)" due to an unfollowed import  [no-any-unimported]
- pandera/engines/numpy_engine.py:48:19: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/engines/numpy_engine.py:48:19: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/numpy_engine.py:49:12: error: Expression type contains "Any" (has type "type[Any (from unimported type)]")  [no-any-expr]
- pandera/engines/numpy_engine.py:49:17: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/engines/numpy_engine.py:51:13: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/numpy_engine.py:52:16: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/numpy_engine.py:54:5: error: Explicit "Any" is not allowed  [no-any-explicit]
- pandera/engines/numpy_engine.py:56:16: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/numpy_engine.py:56:31: error: Expression has type "Any"  [no-any-expr]
- pandera/engines/numpy_engine.py:58:5: error: Return type becomes "Any (from unimported type) | Any (from unimported type) | Any (from unimported type) | Any (from unimported type)" due to an unfollowed import  [no-any-unimported]
- pandera/engines/numpy_engine.py:58:5: error: Argument 2 to "try_coerce" becomes "Any (from unimported type) | Any (from unimported type) | Any (from unimported type) | Any (from unimported type)" due to an unfollowed import  [no-any-unimported]
- pandera/engines/numpy_engine.py:62:20: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/numpy_engine.py:62:32: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type) | Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/engines/numpy_engine.py:64:19: error: Call to untyped function "ParserError" in typed context  [no-untyped-call]
- pandera/engines/numpy_engine.py:65:17: error: Expression type contains "Any" (has type "type[Any (from unimported type)]")  [no-any-expr]
- pandera/engines/numpy_engine.py:65:17: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/numpy_engine.py:65:42: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type) | Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/engines/numpy_engine.py:67:31: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/numpy_engine.py:68:21: error: Expression type contains "Any" (has type "Any (from unimported type) | Any (from unimported type) | Any (from unimported type) | Any (from unimported type)")  [no-any-expr]
- pandera/engines/numpy_engine.py:68:37: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/numpy_engine.py:73:16: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/numpy_engine.py:85:5: error: Explicit "Any" is not allowed  [no-any-explicit]
- pandera/engines/numpy_engine.py:85:5: error: Type of decorated function contains type "Any" ("(type[Engine], Any) -> DataType")  [no-any-decorated]
- pandera/engines/numpy_engine.py:89:20: error: Expression type contains "Any" (has type "type[Engine]")  [no-any-expr]
- pandera/engines/numpy_engine.py:89:20: error: Call to incomplete function "dtype" of "Engine" in typed context  [no-untyped-call]
- pandera/engines/numpy_engine.py:89:20: note: Type is "def [_DataType <: pandera.dtypes.DataType] (cls: type[Any (from omitted generics)], data_type: Any) -> _DataType"
- pandera/engines/numpy_engine.py:89:45: error: Expression has type "Any"  [no-any-expr]
- pandera/engines/numpy_engine.py:92:28: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/numpy_engine.py:92:37: error: Expression has type "Any"  [no-any-expr]
- pandera/engines/numpy_engine.py:95:21: error: Expression has type "Any"  [no-any-expr]
- pandera/engines/numpy_engine.py:100:24: error: Expression type contains "Any" (has type "type[Engine]")  [no-any-expr]
- pandera/engines/numpy_engine.py:100:24: error: Call to incomplete function "dtype" of "Engine" in typed context  [no-untyped-call]
- pandera/engines/numpy_engine.py:100:24: note: Type is "def [_DataType <: pandera.dtypes.DataType] (cls: type[Any (from omitted generics)], data_type: Any) -> _DataType"
- pandera/engines/numpy_engine.py:100:49: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/numpy_engine.py:102:33: error: Expression has type "Any"  [no-any-expr]
- pandera/engines/numpy_engine.py:110:2: error: Call to incomplete function "register_dtype" of "Engine" in typed context  [no-untyped-call]
- pandera/engines/numpy_engine.py:110:2: note: Type is "def [_DataType <: pandera.dtypes.DataType] (pandera_dtype_cls: type[_DataType] =, *, equivalents: list[Any] | None =) -> def (*Untyped, **Untyped) -> Untyped"
- pandera/engines/numpy_engine.py:110:2: error: Expression type contains "Any" (has type "(...) -> Untyped")  [no-any-expr]
- pandera/engines/numpy_engine.py:110:2: error: Expression type contains "Any" (has type "type[Any (from omitted generics)] | (type[Any (from omitted generics)]) -> type[Any (from omitted generics)]")  [no-any-expr]
- pandera/engines/numpy_engine.py:111:17: error: Expression type contains "Any" (has type "list[Any]")  [no-any-expr]
- pandera/engines/numpy_engine.py:111:32: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/numpy_engine.py:111:55: error: Call to untyped function "Bool" in typed context  [no-untyped-call]
- pandera/engines/numpy_engine.py:113:2: error: Expression type contains "Any" (has type "(type[Any (from omitted generics)] | None, KwArg(Any)) -> type[Any (from omitted generics)] | (type[Any (from omitted generics)]) -> type[Any (from omitted generics)]")  [no-any-expr]
- pandera/engines/numpy_engine.py:113:2: error: Expression type contains "Any" (has type "type[Bool]")  [no-any-expr]
- pandera/engines/numpy_engine.py:115:12: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/numpy_engine.py:118:1: error: Return type becomes "dict[int, list[type | str | Any (from unimported type) | DataType]]" due to an unfollowed import  [no-any-unimported]
- pandera/engines/numpy_engine.py:123:20: error: Expression type contains "Any" (has type "Any | None")  [no-any-expr]
- pandera/engines/numpy_engine.py:124:24: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/numpy_engine.py:125:24: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/numpy_engine.py:127:27: error: Expression type contains "Any" (has type "list[Any (from unimported type)]")  [no-any-expr]
- pandera/engines/numpy_engine.py:129:9: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/numpy_engine.py:131:9: error: Expression has type "Any"  [no-any-expr]
- pandera/engines/numpy_engine.py:133:8: error: Expression type contains "Any" (has type "Any | None")  [no-any-expr]
- pandera/engines/numpy_engine.py:134:9: error: Expression type contains "Any" (has type "list[Any (from unimported type)]")  [no-any-expr]
- pandera/engines/numpy_engine.py:134:36: error: Expression has type "Any"  [no-any-expr]
- pandera/engines/numpy_engine.py:136:12: error: Expression type contains "Any" (has type "dict[int, list[type | str | Any (from unimported type) | DataType]]")  [no-any-expr]
- pandera/engines/numpy_engine.py:137:20: error: Expression type contains "Any" (has type "list[type | str | Any (from unimported type) | DataType]")  [no-any-expr]
- pandera/engines/numpy_engine.py:138:13: error: Expression type contains "Any" (has type "set[Any]")  [no-any-expr]
- pandera/engines/numpy_engine.py:138:13: error: Expression type contains "Any" (has type "set[Any | type | str | DataType]")  [no-any-expr]
- pandera/engines/numpy_engine.py:139:17: error: Expression type contains "Any" (has type "(Any, Any, Any, Any)")  [no-any-expr]
- pandera/engines/numpy_engine.py:141:21: error: Expression has type "Any"  [no-any-expr]
- pandera/engines/numpy_engine.py:141:29: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/numpy_engine.py:143:21: error: Expression has type "Any"  [no-any-expr]
- pandera/engines/numpy_engine.py:144:21: error: Expression has type "Any"  [no-any-expr]
- pandera/engines/numpy_engine.py:146:21: error: Expression has type "Any"  [no-any-expr]
- pandera/engines/numpy_engine.py:149:15: error: Expression type contains "Any" (has type "set[Any (from unimported type)]")  [no-any-expr]
- pandera/engines/numpy_engine.py:149:15: error: Expression type contains "Any" (has type "set[type | str | Any (from unimported type) | DataType]")  [no-any-expr]
- pandera/engines/numpy_engine.py:149:19: error: Expression type contains "Any" (has type "list[Any (from unimported type)]")  [no-any-expr]
- pandera/engines/numpy_engine.py:149:73: error: Expression type contains "Any" (has type "list[type | str | Any (from unimported type) | DataType]")  [no-any-expr]
- pandera/engines/numpy_engine.py:159:20: error: Expression type contains "Any" (has type "dict[int, list[type | str | Any (from unimported type) | DataType]]")  [no-any-expr]
- pandera/engines/numpy_engine.py:164:2: error: Call to incomplete function "register_dtype" of "Engine" in typed context  [no-untyped-call]
- pandera/engines/numpy_engine.py:164:2: note: Type is "def [_DataType <: pandera.dtypes.DataType] (pandera_dtype_cls: type[_DataType] =, *, equivalents: list[Any] | None =) -> def (*Untyped, **Untyped) -> Untyped"
- pandera/engines/numpy_engine.py:164:2: error: Expression type contains "Any" (has type "(...) -> Untyped")  [no-any-expr]
- pandera/engines/numpy_engine.py:164:2: error: Expression type contains "Any" (has type "type[Any (from omitted generics)] | (type[Any (from omitted generics)]) -> type[Any (from omitted generics)]")  [no-any-expr]
- pandera/engines/numpy_engine.py:164:36: error: Expression type contains "Any" (has type "dict[int, list[type | str | Any (from unimported type) | DataType]]")  [no-any-expr]
- pandera/engines/numpy_engine.py:164:36: error: Expression type contains "Any" (has type "list[type | str | Any (from unimported type) | DataType]")  [no-any-expr]
- pandera/engines/numpy_engine.py:165:2: error: Expression type contains "Any" (has type "(type[Any (from omitted generics)] | None, KwArg(Any)) -> type[Any (from omitted generics)] | (type[Any (from omitted generics)]) -> type[Any (from omitted generics)]")  [no-any-expr]
- pandera/engines/numpy_engine.py:165:2: error: Expression type contains "Any" (has type "type[Int64]")  [no-any-expr]
- pandera/engines/numpy_engine.py:168:12: error: Expression has type "Any (from unimported type)"  [no-any-expr]
- pandera/engines/numpy_engine.py:172:2: error: Call to incomplete function "register_dtype" of "Engine" in typed context  [no-untyped-call]
- pandera/engines/numpy_engine.py:172:2: note: Type is "def [_DataType <: pandera.dtypes.DataType] (pande

... (truncated 1107174 lines) ...

github-actions[bot] avatar Jul 21 '22 18:07 github-actions[bot]