Created
January 16, 2026 01:45
-
-
Save mypy-play/efa01b423c6f56db2042f3dbce0d01df to your computer and use it in GitHub Desktop.
Shared via mypy Playground
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from logging.config import _FormatterConfigurationTypedDict | |
| # This should error - "()" is not a valid key | |
| formatter_config: _FormatterConfigurationTypedDict = { | |
| "()": "logging.Formatter", | |
| "format": "%(message)s", | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment