Skip to content

Commit d9ddf03

Browse files
authored
Merge pull request #119 from desy-ml/118-failing-pipeline-due-to-new-flake8-bugbear-version
Ignore iterable modification flake8 warning
2 parents bdb336d + 6419203 commit d9ddf03

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.flake8

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ exclude =
77
.ipynb_checkpoints
88
max-line-length = 88
99
extend-ignore = E203, W503
10-
ignore = BLK100
10+
ignore = BLK100

cheetah/converters/dontbmad.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ def validate_understood_properties(understood: list[str], properties: dict) -> N
426426
assert property in understood, (
427427
f"Property {property} with value {properties[property]} for element type"
428428
f" {properties['element_type']} is currently not understood. Other values"
429-
f" in properties are {properties.keys()}."
429+
f" in properties are {properties.keys()}." # noqa: B038
430430
)
431431

432432

0 commit comments

Comments
 (0)