diff --git a/plugins/aws/Makefile b/plugins/aws/Makefile index f98f39a021..c1622aa12e 100644 --- a/plugins/aws/Makefile +++ b/plugins/aws/Makefile @@ -29,7 +29,7 @@ clean-test: ## remove test and coverage artifacts lint: ## static code analysis black --line-length 120 --check fix_plugin_aws test - flake8 fix_plugin_aws + flake8 fix_plugin_aws test mypy --python-version 3.12 --strict --install-types fix_plugin_aws test test: ## run tests quickly with the default Python diff --git a/plugins/aws/test/collector_test.py b/plugins/aws/test/collector_test.py index 5345596afc..9de124602e 100644 --- a/plugins/aws/test/collector_test.py +++ b/plugins/aws/test/collector_test.py @@ -13,7 +13,6 @@ ) from fix_plugin_aws.resource.base import AwsResource, AwsApiSpec, GraphBuilder, AwsRegion from fix_plugin_aws.resource.ec2 import AwsEc2Instance -from fix_plugin_aws.resource.inspector import AwsInspectorFinding from fixlib.baseresources import BaseResource from fixlib.core.model_export import dataclasses_to_fixcore_model from test import account_collector, builder, aws_client, aws_config, no_feedback # noqa: F401