1 2 3 4 5 6 7 8 9 10 11 | class NICI_CAL(DataClassification):
name="NICI_CAL"
# this a description of the intent of the classification
# to what does the classification apply?
usage = '''
Applies to all NICI flats
'''
parent = "NICI"
requirement = ISCLASS('NICI_FLAT') | ISCLASS('NICI_DARK')
newtypes.append( NICI_CAL())
|