Skip to content
Advertisement

Linkrot – TypeError: ‘<' not supported between instances of 'NoneType' and 'str'

I’m getting a “TypeError: ‘<‘ not supported between instances of ‘NoneType’ and ‘str'” when running a python script. Below is the Traceback.

JavaScript

Here is the snippet of the code throwing the error. I understand why it is wrong, but I’m unsure how to fix it. Any help would be appreciated.

JavaScript

Advertisement

Answer

It appears None is one of the dictionary keys. Since the sort method uses comparison to sort the dictionary by keys, it fails because it cannot compare this None to the other keys that are strings (thus the error message that talks about a comparison operator <).

Assuming the None key is there by accident and doesn’t contain any useful data, you can solve this by simply removing it from the dictionary before the for loop like this:

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement