Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -994,7 +994,6 @@ include = ["python_testcontainers/**"]
# The ignored rules below should be removed once the code has been updated, they are included #
# like this so that we can reactivate them one by one. #
##################################################################################################
invalid-argument-type = "ignore"
possibly-missing-attribute = "ignore"
too-many-positional-arguments = "ignore"
unresolved-attribute = "ignore"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def add_measurement(
self,
definition: MeasurementDefinition,
value: float | str,
**kwargs: str | float,
**kwargs: dict[str, float],
) -> None:
self.measurements.append(
InfrahubMeasurementItem(
Expand Down