Skip to content

Commit

Permalink
Fix: wrong type declaration
Browse files Browse the repository at this point in the history
- when typing is disabled
  • Loading branch information
sansmoraxz committed May 24, 2023
1 parent 7820e89 commit be99d13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lamb2numb/lambda_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
from mypy_boto3_sqs.type_defs import SendMessageResultTypeDef

else:
SQSClient = boto3.client('sqs')
S3Client = boto3.client('s3')
SQSClient = object
S3Client = object
GetObjectOutputTypeDef = dict
SendMessageResultTypeDef = dict

Expand Down

0 comments on commit be99d13

Please sign in to comment.