MCPcopy
hub / github.com/xlenore/psx-covers / load_cover_names

Function load_cover_names

tools/update_stats.py:31–39  ·  view source on GitHub ↗
(covers_dir: Path)

Source from the content-addressed store, hash-verified

29
30
31def load_cover_names(covers_dir: Path):
32 names = []
33 if not covers_dir.exists():
34 return names
35 for p in covers_dir.iterdir():
36 if not p.is_file():
37 continue
38 names.append(p.name.upper())
39 return names
40
41
42def format_percent(available: int, total: int) -> str:

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected