omry / omegaconf

Flexible Python configuration system. The last one you will ever need.
BSD 3-Clause "New" or "Revised" License
1.94k stars 106 forks source link

type hints: treat dict/Dict/tuple/Tuple/list/List uniformly #977

Closed Jasha10 closed 2 years ago

Jasha10 commented 2 years ago

This closes #973. The root cause of #973 was that tuple was being treated differently from Tuple.

This PR is a move towards treating tuple and Tuple in the same way when the appear in type annotations, and likewise for dict/Dict and list/List.

Jasha10 commented 2 years ago