Skip to content

Commit

Permalink
Fix mypy error
Browse files Browse the repository at this point in the history
  • Loading branch information
nsoranzo committed May 19, 2024
1 parent 7f6adf0 commit 6fe7c5f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/galaxy/jobs/runners/aws.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,8 @@

try:
import boto3

except ImportError as e:
boto3 = None
boto3 = None # type: ignore[assignment]
BOTO3_IMPORT_MSG.format(msg=unicodify(e))


Expand Down

0 comments on commit 6fe7c5f

Please sign in to comment.