Skip to content

Commit

Permalink
chore: fixed pre-commit error
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr-Sunglasses committed Feb 16, 2025
1 parent c595cfc commit a22d666
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions podman/tests/integration/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,7 @@ def consume_lines(pipe, consume_fn):
def consume(line: str):
logger.debug(line.strip("\n") + f" refid={self.reference_id}")

self.proc = subprocess.Popen(
self.cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT
) # pylint: disable=consider-using-with
self.proc = subprocess.Popen(self.cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) # pylint: disable=consider-using-with
threading.Thread(target=consume_lines, args=[self.proc.stdout, consume]).start()

if not check_socket:
Expand Down

0 comments on commit a22d666

Please sign in to comment.