MCPcopy Create free account
hub / github.com/CodeClash-ai/CodeClash / __init__

Method __init__

codeclash/analysis/llm_as_judge/utils.py:11–13  ·  view source on GitHub ↗
(self, lock_path: str | Path)

Source from the content-addressed store, hash-verified

9
10class FileLock:
11 def __init__(self, lock_path: str | Path):
12 self.lock_path = Path(lock_path)
13 self.lock_file = None
14
15 def __enter__(self):
16 self.lock_file = open(self.lock_path, "w")

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected