File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
localstack_extensions/utils Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ dist: venv ## Create distribution package
2828publish : 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
3434lint : venv # # Run ruff to lint the code
3535 $(VENV_RUN ) ; python -m ruff check --output-format=full .
Original file line number Diff line number Diff line change 55from typing import Callable
66import requests
77
8- from localstack import config
98from localstack .config import is_env_true
109from localstack_extensions .utils .h2_proxy import (
1110 apply_http2_patches_for_grpc_support ,
You can’t perform that action at this time.
0 commit comments