Skip to content

Commit

Permalink
Fix for pep8 violation
Browse files Browse the repository at this point in the history
  • Loading branch information
bsclifton committed May 12, 2020
1 parent 396c87d commit 87639b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions script/lib/env_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ def consume(iter):


# Define a way to handle each KEY=VALUE line.
def handle_line(l):
return l.rstrip().split('=', 1)
def handle_line(line):
return line.rstrip().split('=', 1)


def get_environment_from_batch_command(env_cmd, initial=None):
Expand Down

0 comments on commit 87639b4

Please sign in to comment.