You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Matcher entries currently look like (fetcher, matchers, cond). However, the matchers is always [build_matcher(regexp, re.I)], and the cond is always lambda m: True or lambda m: cls in m.cls. This should just be (fetcher, regexp, cond) or so to allow for more useful introspection of the matchers. (See also #4, which this is basically part of, and #11, which this is probably a prereq for.)
The text was updated successfully, but these errors were encountered:
Matcher entries currently look like
(fetcher, matchers, cond)
. However, thematchers
is always[build_matcher(regexp, re.I)]
, and thecond
is alwayslambda m: True
orlambda m: cls in m.cls
. This should just be(fetcher, regexp, cond)
or so to allow for more useful introspection of the matchers. (See also #4, which this is basically part of, and #11, which this is probably a prereq for.)The text was updated successfully, but these errors were encountered: