Skip to content

Commit 1ccf53a

Browse files
committed
sniffers.py: Add missing await
1 parent 96a3b7d commit 1ccf53a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

harlogger/sniffers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ def __init__(
137137

138138
async def sniff(self) -> None:
139139
try:
140-
self._sniff()
140+
await self._sniff()
141141
except KeyboardInterrupt:
142142
if self.out:
143143
self.out.write(json.dumps(self.har, indent=4))

0 commit comments

Comments
 (0)