This code generates a false positive:
importsiximportabcfromtypingimportTypeVar, GenericT=TypeVar("T")
classC(six.with_metaclass(abc.ABCMeta, Generic[T])):
passclassD(six.with_metaclass(abc.ABCMeta, C[T])): # Type variable "t.T" is unboundpassThis is a regression from 0.991 introduced here:
@ilevkivskyi Do you have time to look at this? This is a blocker for the 1.0 release.
This code generates a false positive:
This is a regression from 0.991 introduced here:
@ilevkivskyi Do you have time to look at this? This is a blocker for the 1.0 release.