MCPcopy
hub / github.com/tickmao/Novel / inventory_status

Method inventory_status

scripts/source_inventory.py:325–338  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

323 }
324
325 def inventory_status(self) -> Dict:
326 working = self.load_working_sources()
327 candidates = self.load_candidate_sources()
328 screened = self.load_screened_sources()
329
330 return {
331 "working_count": len(working),
332 "candidate_count": len(candidates),
333 "screened_count": len(screened),
334 "min_working_sources": self.min_working_sources,
335 "working_target": self.working_target,
336 "export_target": self.export_target,
337 "candidate_buffer_ok": len(candidates) >= self.min_candidate_sources,
338 }
339
340
341def main():

Callers 1

mainFunction · 0.95

Calls 3

load_working_sourcesMethod · 0.95
load_screened_sourcesMethod · 0.95

Tested by

no test coverage detected