Skip to content

Commit

Permalink
Merge pull request #119 from desy-ml/118-failing-pipeline-due-to-new-…
Browse files Browse the repository at this point in the history
…flake8-bugbear-version

Ignore iterable modification flake8 warning
  • Loading branch information
jank324 committed Jan 16, 2024
2 parents bdb336d + 6419203 commit d9ddf03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ exclude =
.ipynb_checkpoints
max-line-length = 88
extend-ignore = E203, W503
ignore = BLK100
ignore = BLK100
2 changes: 1 addition & 1 deletion cheetah/converters/dontbmad.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ def validate_understood_properties(understood: list[str], properties: dict) -> N
assert property in understood, (
f"Property {property} with value {properties[property]} for element type"
f" {properties['element_type']} is currently not understood. Other values"
f" in properties are {properties.keys()}."
f" in properties are {properties.keys()}." # noqa: B038
)


Expand Down

0 comments on commit d9ddf03

Please sign in to comment.