Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-20 07:58:58

0001 """
0002 Relationship between job and worker
0003 
0004 """
0005 
0006 from .spec_base import SpecBase
0007 
0008 
0009 # relationship spec
0010 class JobWorkerRelationSpec(SpecBase):
0011     # attributes
0012     attributesWithTypes = (
0013         "PandaID:integer / index",
0014         "workerID:integer / index",
0015         "relationType:text",
0016     )
0017 
0018     # constructor
0019     def __init__(self):
0020         SpecBase.__init__(self)