What's the difference?
myVar: myCustomClassType
vs.
myVar: myCustomClassType = None
I ask because Pycharm inspector squawks w/ the latter:
Expected type 'myCustomClassType', got 'None' instead
I understand that None is an object too and so therefore this inspection is stating that there is a type clash. My question is which is better form?