We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 799f4b6 commit 8ef7c8fCopy full SHA for 8ef7c8f
Makefile
@@ -9,7 +9,7 @@ install-dev: install
9
10
.PHONY: lint
11
lint:
12
- flake8 chaostoxi/ tests/
+ flake8 --ignore=E251 chaostoxi/ tests/
13
isort --check-only --profile black chaostoxi/ tests/
14
black --check --diff chaostoxi/ tests/
15
chaostoxi/toxic/actions.py
@@ -33,8 +33,8 @@ def create_toxic(
33
toxic_type: str,
34
stream: str = "downstream",
35
toxicity: float = 1.0,
36
- attributes: Dict[str, Any] = None, # noqa: E251
37
- configuration: Configuration = None, # noqa: E251
+ attributes: Dict[str, Any] = None,
+ configuration: Configuration = None,
38
) -> bool:
39
"""
40
Allows you to create any of the supported types of toxics
0 commit comments