Skip to content

Commit

Permalink
AIRFLOW-5489: Remove unneeded assignment of variable (apache#6106)
Browse files Browse the repository at this point in the history
  • Loading branch information
getras1998 authored and aijamalnk committed Sep 15, 2019
1 parent 6560004 commit 52c6516
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion airflow/contrib/sensors/bash_sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ def poke(self, context):
self.sp = sp

self.log.info("Output:")
line = ''
for line in iter(sp.stdout.readline, b''):
line = line.decode(self.output_encoding).strip()
self.log.info(line)
Expand Down

0 comments on commit 52c6516

Please sign in to comment.