7 lines
121 B
Python
7 lines
121 B
Python
|
from . import base
|
||
|
|
||
|
class MatcherId(base.MatcherBase):
|
||
|
|
||
|
def match(self, xml):
|
||
|
return xml.get('id') == self._criteria
|