MCPcopy Create free account
hub / github.com/daniel2005d/mapXplore / __init__

Method __init__

model/result.py:42–47  ·  view source on GitHub ↗
(self, **kwargs)

Source from the content-addressed store, hash-verified

40
41class QueryResult:
42 def __init__(self, **kwargs) -> str:
43 self.criterial:QueryType = None
44 self.results:Result = None
45 self.value:str = None
46 for key, value in kwargs.items():
47 setattr(self, key, value)
48
49 @property
50 def length(self) -> int:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected