Skip to content

Commit 996ef19

Browse files
committed
lint
1 parent 8a6b59d commit 996ef19

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

infrastructure/instance/batch_processor_filter_lambda.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ resource "aws_ecr_repository" "batch_processor_filter_lambda_repository" {
1515

1616
# Module for building and pushing Docker image to ECR
1717
module "batch_processor_filter_docker_image" {
18-
source = "terraform-aws-modules/lambda/aws//modules/docker-build"
19-
version = "8.1.2"
18+
source = "terraform-aws-modules/lambda/aws//modules/docker-build"
19+
version = "8.1.2"
2020
docker_file_path = "./batch_processor_filter/Dockerfile"
2121

2222
create_ecr_repo = false
@@ -42,7 +42,7 @@ module "batch_processor_filter_docker_image" {
4242
use_image_tag = false
4343
source_path = abspath("${path.root}/../../lambdas")
4444
triggers = {
45-
dir_sha = local.batch_processor_filter_lambda_dir_sha
45+
dir_sha = local.batch_processor_filter_lambda_dir_sha
4646
shared_dir_sha = local.shared_dir_sha
4747
}
4848
}

lambdas/batch_processor_filter/src/batch_processor_filter_service.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
from batch_audit_repository import BatchAuditRepository
88
from batch_file_created_event import BatchFileCreatedEvent
99
from batch_file_repository import BatchFileRepository
10-
from constants import QUEUE_URL, REGION_NAME, FileNotProcessedReason, FileStatus
11-
from exceptions import EventAlreadyProcessingForSupplierAndVaccTypeError
1210
from common.clients import logger
1311
from common.log_firehose import send_log_to_firehose
12+
from constants import QUEUE_URL, REGION_NAME, FileNotProcessedReason, FileStatus
13+
from exceptions import EventAlreadyProcessingForSupplierAndVaccTypeError
1414

1515
BATCH_AUDIT_REPOSITORY = BatchAuditRepository()
1616
BATCH_FILE_REPOSITORY = BatchFileRepository()

lambdas/batch_processor_filter/src/exception_decorator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
from functools import wraps
44
from typing import Callable
55

6-
from exceptions import EventAlreadyProcessingForSupplierAndVaccTypeError
76
from common.clients import logger
7+
from exceptions import EventAlreadyProcessingForSupplierAndVaccTypeError
88

99

1010
def exception_decorator(func: Callable):

0 commit comments

Comments
 (0)