We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
collection type param type is not correct.
enderpy/typechecker/test_data/output/enderpy_python_type_checker__checker__tests__basic_generics.snap
Line 461 in bebf2e0
Line 113: class Pair1(Generic[T, S]): ... Expr types in the line --->: Pair1 => (class) basic_generics.Pair1[TypeVar[T, ], TypeVar[S, ]] Generic => (class) Generic Generic[T, S] => (class) Generic T => TypeVar[T, ] T, S] => (class) builtins.tuple[Unknown] S => TypeVar[S, ] ... => Any
The text was updated successfully, but these errors were encountered:
No branches or pull requests
collection type param type is not correct.
enderpy/typechecker/test_data/output/enderpy_python_type_checker__checker__tests__basic_generics.snap
Line 461 in bebf2e0
In the following the T, S] should be fixed and tay tuple of type type parmeters or be removed. Not sure we can check pyright output.
The text was updated successfully, but these errors were encountered: