The type hinting indicating any pywrapid derived class is no longer valid for newer versions of python.
We need to change typehinting to use builtin x: type(z) where any derived class is used and x: z where x is the declaration and z is the baseclass name to avoid showing typehint errors in the IDE.
Examples where this needs updates is pywrapid.config, pywrapid.web...
The type hinting indicating any pywrapid derived class is no longer valid for newer versions of python.
We need to change typehinting to use builtin x: type(z) where any derived class is used and x: z where x is the declaration and z is the baseclass name to avoid showing typehint errors in the IDE.
Examples where this needs updates is pywrapid.config, pywrapid.web...