Open
Description
Bug Report
Default (default=
) value for attrs.field()
type is revealed as Union[builtins.int, None]
where the Union with None is unexpected. While this used to be revealed as Any
, this shows up as a regression, bisected to 391ed853f (PR #15021, mypy master, unreleased).
To Reproduce
import attrs
@attrs.define()
class MyDataClass:
some_int_field: int = attrs.field(default=123)
# Somewhere else in the project I would like to reference that default:
reveal = attrs.fields(MyDataClass).some_int_field.default
reveal_type(reveal)
assignment_to_int_fails: int = attrs.fields(MyDataClass).some_int_field.default
Expected Behavior
$ mypy --strict myfile.py
myfile.py:9:13: note: Revealed type is "builtins.int"
Success: no issues found in 1 source file
Actual Behavior
on master (tested 9edda9a):
$ mypy --strict --show-error-context --show-column-numbers myfile.py
myfile.py:9:13: note: Revealed type is "Union[builtins.int, None]"
myfile.py:11:32: error: Incompatible types in assignment (expression has type "int | None", variable has type "int") [assignment]
Found 1 error in 1 file (checked 1 source file)
(my project fails, suspected mypy bug / imperfect type inference)
On 1.5.1:
$ mypy --strict myfile.py
myfile.py:9:13: note: Revealed type is "Any"
Success: no issues found in 1 source file
(my project passes, albeit without a proper type check)
Your Environment
- Mypy version used: master (1.5.1 = OK, introduced with 391ed853f)
- Mypy command-line flags:
--strict --show-error-context --show-column-numbers
- Mypy configuration options from
mypy.ini
(and other config files): n/a - Python version used: 3.11.5
Project to test on if you want (100% mypy-strict compatible on 1.5.1 and master otherwise): https://github.com/gertvdijk/PyKMP