Skip to content

Commit

Permalink
Fix spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
polothy committed Jun 20, 2023
1 parent b98bf09 commit e7ac730
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/@aws-cdk/aws-lambda-python-alpha/test/integ.function.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ class TestStack extends Stack {
});

const localCode = `
from http import HTTPStatus
from http import HTTPStatus
def handler(event, context):
print('No dependencies')
return HTTPStatus.OK.value
`;
def handler(event, context):
print('No dependencies')
return HTTPStatus.OK.value
`;

const localFunction = new lambda.PythonFunction(this, 'local_handler', {
entry: path.join(__dirname, 'lambda-handler'),
Expand Down

0 comments on commit e7ac730

Please sign in to comment.