Skip to content
Snippets Groups Projects
Verified Commit cb1da72e authored by Rajmund Hruška's avatar Rajmund Hruška
Browse files

Add 'mypy' to 'lint' rule

parent dd226565
No related branches found
No related tags found
No related merge requests found
Pipeline #19164 passed
......@@ -23,4 +23,4 @@ mypy:
isort:
python3 -m isort $(MODULES)
lint: black isort flake8
lint: black isort flake8 mypy
......@@ -695,7 +695,7 @@ class Filter(Interpreter):
elif isinstance(data, MutableSequence):
# Aggregate results from all list elements
aggregated = []
aggregated: Any = []
for item in data:
if isinstance(item, (Mapping, MutableSequence)):
result, _ = self._get_data_value(path, item)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment