We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca3de20 commit a1f46fcCopy full SHA for a1f46fc
httpdbg/hooks/template_sitecustomize.py
@@ -16,7 +16,9 @@ class HttpdbgRecorder:
16
17
def __init__(self):
18
self._running: bool = False
19
- self.fname: str = os.path.join(os.environ['HTTPDBG_MULTIPROCESS_DIR'], uuid.uuid1())
+ self.fname: str = os.path.join(
20
+ os.environ["HTTPDBG_MULTIPROCESS_DIR"], uuid.uuid1()
21
+ )
22
self.context = None
23
self.records: Union[HTTPRecords, None] = None
24
0 commit comments