コード例 #1
0
    def __contains__(self, value):
        '''
        Check if specific type is allowed
        '''

        return (value in self.channel_types or
                BaseType.__contains__(self, value))
コード例 #2
0
ファイル: input_type.py プロジェクト: baites/bsm_analyze
    def __contains__(self, value):
        '''
        Look up for type among supported channels. Child chlasses should
        overload this method to add new channels
        '''

        return (value in self.input_types or
                BaseType.__contains__(self, value))