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 5867a0b commit c2d2035
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions infrastructure/deploy.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
"""This script deploys the cloud infrastructure for the ScPCA project."""

import argparse
import os
import json
import os
import signal
import subprocess
import time
Expand Down Expand Up @@ -49,7 +49,7 @@ def parse_args():
version_help_text = "Specify the version of the system that is being deployed."
parser.add_argument("-v", "--system-version", help=version_help_text, required=True)

region_help_text = ("Specify the AWS region to deploy the stack to. Default is us-east-1.")
region_help_text = "Specify the AWS region to deploy the stack to. Default is us-east-1."
parser.add_argument("-r", "--region", help=region_help_text, default="us-east-1")

return parser.parse_args()
Expand Down

0 comments on commit c2d2035

Please sign in to comment.