Skip to content

Commit 0e5c01f

Browse files
whummerclaude
andcommitted
remove unused import in docker.py
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 5633abb commit 0e5c01f

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

utils/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ dist: venv ## Create distribution package
2828
publish: clean-dist venv dist ## Publish package to PyPI
2929
$(VENV_RUN); pip install --upgrade twine; twine upload dist/*
3030

31-
format: venv ## Run ruff to format the code
32-
$(VENV_RUN); python -m ruff format .; make lint
31+
format: venv ## Run ruff to format and fix the code
32+
$(VENV_RUN); python -m ruff format .; python -m ruff check --fix .
3333

3434
lint: venv ## Run ruff to lint the code
3535
$(VENV_RUN); python -m ruff check --output-format=full .

utils/localstack_extensions/utils/docker.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
from typing import Callable
66
import requests
77

8-
from localstack import config
98
from localstack.config import is_env_true
109
from localstack_extensions.utils.h2_proxy import (
1110
apply_http2_patches_for_grpc_support,

0 commit comments

Comments
 (0)