When type-checking the following code: ``` python print("%( )s world" % {' ': 'hello'}) ``` `mypy` gives the error: ``` error: Unsupported format character '(' ``` Sounds like mypy doesn't currently accept spaces as the keys for format specifiers.