Skip to content
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ help: ## help on rule's targets


test_python_version: ## Check Python version, throw error if compilation would fail with the installed version
python ./scripts/test_python_version.py
@uv run ./scripts/test_python_version.py


## DOCKER BUILD -------------------------------
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# pylint: disable-all

#
# wget https://raw.githubusercontent.com/tiangolo/fastapi/master/fastapi/encoders.py --output-document=_original_fastapi_encoders
#
Expand Down Expand Up @@ -75,7 +76,7 @@ def jsonable_encoder(
sqlalchemy_safe=sqlalchemy_safe,
)
if dataclasses.is_dataclass(obj):
obj_dict = dataclasses.asdict(obj) # type: ignore[call-overload]
obj_dict = dataclasses.asdict(obj) # type: ignore[arg-type]
return jsonable_encoder(
obj_dict,
include=include,
Expand Down
2 changes: 1 addition & 1 deletion tests/performance/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,4 @@ install-ci:
.PHONY: config
config:
@$(call check_defined, input, please define inputs when calling $@ - e.g. ```make $@ input="--help"```)
@python locust_settings.py $(input) | tee .env
@uv run locust_settings.py $(input) | tee .env
Loading