We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
The mypy language overview should mention list and dict literals with explicit types, for example:
names = <str> [] # Equivalent to str[] names = []counts = <str, int> {} # Equivalent to dict<str, int> counts = {}