A Dictionary lookup used a key that does not exist and the dict was not accessed with the get() function. Use get(dict, key, default) to safely retrieve optional keys.
E716
vim A Dictionary lookup used a key that does not exist and the dict was not accessed with the get() function. Use get(dict, key, default) to safely retrieve optional keys.