MCPcopy Index your code
hub / github.com/clips/pattern / __init__

Method __init__

pattern/db/__init__.py:1106–1110  ·  view source on GitHub ↗

A list of SQL WHERE filters combined with AND/OR logical operator.

(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

1104class Group(list):
1105
1106 def __init__(self, *args, **kwargs):
1107 """ A list of SQL WHERE filters combined with AND/OR logical operator.
1108 """
1109 list.__init__(self, args)
1110 self.operator = kwargs.get("operator", AND)
1111
1112 def SQL(self, **kwargs):
1113 """ For example, filter for small pets with tails or wings

Callers

nothing calls this directly

Calls 2

__init__Method · 0.45
getMethod · 0.45

Tested by

no test coverage detected