Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsmejia committed Nov 22, 2024
1 parent ff98201 commit e1be89f
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions infrastructure/unlock_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,7 @@ def unlock_state(lock_id):

# Make sure that Terraform is allowed to shut down gracefully.
try:
command = [
"terraform",
"force-unlock",
"-force",
lock_id
]
command = ["terraform", "force-unlock", "-force", lock_id]
terraform_process = subprocess.Popen(command)
terraform_process.wait()
except KeyboardInterrupt:
Expand Down

0 comments on commit e1be89f

Please sign in to comment.