MCPcopy Create free account
hub / github.com/MorDavid/BruteForceAI / __init__

Method __init__

BruteForceAI.py:16–20  ·  view source on GitHub ↗
(self, filename)

Source from the content-addressed store, hash-verified

14class OutputCapture:
15 """Capture all output to both console and file"""
16 def __init__(self, filename):
17 self.filename = filename
18 self.file = None
19 self.original_stdout = sys.stdout
20 self.original_stderr = sys.stderr
21
22 def start(self):
23 """Start capturing output"""

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected