I am getting the error erroneously in Pycharm:
TypedDict "RPCResponse" has no key 'elapsed_time'
How can I ignore it?
Put
# noinspection PyTypedDict
above it.
More info on the error: https://www.python.org/dev/peps/pep-0589/