54
56
def isBugSupervisor(self, obj):
56
58
return (IHasBugSupervisor.providedBy(obj)
59
61
def isSecurityContact(self, obj):
61
63
return (IHasSecurityContact.providedBy(obj)
68
70
def isOneOfDrivers(self, obj):
70
72
if not IHasDrivers.providedBy(obj):
71
73
return self.isDriver(obj)
72
74
for driver in obj.drivers: