Ahenk/opt/ahenk/base/scheduler/custom/all_match.py
2016-04-05 14:30:12 +03:00

7 lines
No EOL
194 B
Python

#!/usr/bin/python3
# -*- coding: utf-8 -*-
# Some utility classes / functions first
class AllMatch(set):
"""Universal set - match everything"""
def __contains__(self, item): return True