Skip to content

Commit

Permalink
debug action
Browse files Browse the repository at this point in the history
  • Loading branch information
vijayamadhavareddy committed Apr 15, 2024
1 parent 9520917 commit f723c60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/inputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def env_to_param(env_line: str) -> AwsParameter:


def ensure_env_input(input_params: str):
param_lines = input_params.split(sep="\n")
param_lines = input_params.strip().split(sep="\n")
print("param_lines")
print(param_lines)
return [param_line.strip() for param_line in param_lines]
Expand Down

0 comments on commit f723c60

Please sign in to comment.