Skip to content

Commit

Permalink
Black lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nazywam committed Jan 15, 2024
1 parent c6b337e commit a16779c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion karton/pcap_miner/pcap_miner.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,11 @@ def process(self, task: Task) -> None:
return

if self.max_pcap_size and pcap_file.size > self.max_pcap_size:
self.log.info("PCAP file size (%s) exceeds the configured limit (%s)", pcap_file.size, self.max_pcap_size)
self.log.info(
"PCAP file size (%s) exceeds the configured limit (%s)",
pcap_file.size,
self.max_pcap_size,
)
return

pcap_file.download_to_file(temp_dir / "dump.pcap")
Expand Down

0 comments on commit a16779c

Please sign in to comment.