mirror of
https://github.com/correl/SleekXMPP.git
synced 2025-03-10 17:00:12 -09:00
6 lines
117 B
Python
6 lines
117 B
Python
from . import base
|
|
|
|
class MatcherId(base.MatcherBase):
|
|
|
|
def match(self, xml):
|
|
return xml['id'] == self._criteria
|