Skip to content

Tag: python-descriptors

Python – TypeHint for Descriptor

I would like to have a base class for all my descriptors which is of type descriptor: Is it correct to use the GetSetDescriptorType? Now when I declare A pycharm inspection complains: get() does not match signature. I have looked up the signature which is: Is it an error in inspection or is my declaration wro…