Base {} Dict Should Infer from Function Return Type
Nobody has claimed this yet.
- Dominant language
- Python
- Stars
- 20.6k
- Forks
- 3.3k
- PR merge metrics
- PR metrics pending
Description
Bug Report
I think this may be a possible refinement bug. Mypy flags an error on the assignment line, and not the return statement. So it is clear Mypy flags {} as a subtype of {str, str}, but I think this should be one of those cases where having refinements should reduce the annotation burden on developers. Unless we want to throw an error because of imprecision.
To Reproduce
# Ideally, a small sample program that demonstrates the problem.
# Or even better, a reproducible playground link https://mypy-play.net/ (use the "Gist" button)
def func() -> dict[str, str]:
x = {} ## error here for annot
return x
reproducible link: Gist Playground
Expected Behavior
I would expect Mypy to notice the reveal_type(x) as dict[str, str] based off the functions return type and not raise an error.
Actual Behavior
main.py:2: error: Need type annotation for "x" (hint: "x: dict[<type>, <type>] = ...") [var-annotated]
Your Environment
- Mypy version used:
- Mypy command-line flags:
- Mypy configuration options from
mypy.ini(and other config files): - Python version used:
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by running the main.py reproduction with strict flags through the linked mypy-play playground or Gist and confirm the var-annotated diagnostic. Done means mypy infers x as dict[str, str] from func's return type and no longer reports the annotation error, with regression coverage added for this behavior.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- python
- Domain
- tooling
- Issue type
- Bug
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 45/100