MCPcopy Index your code
hub / github.com/abryant710/auto-codebase-documenter / main

Function main

format_code.py:9–16  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

7
8
9def main():
10 for root, dirs, files in os.walk("."):
11 if "venv" in dirs:
12 dirs.remove("venv") # don't visit this directory
13
14 for name in files:
15 if name.endswith(".py"):
16 format_file(os.path.join(root, name))
17
18
19if __name__ == "__main__":

Callers 1

format_code.pyFile · 0.70

Calls 1

format_fileFunction · 0.85

Tested by

no test coverage detected