Skip to content

Commit

Permalink
remove all noqa statements
Browse files Browse the repository at this point in the history
  • Loading branch information
janvonrickenbach committed May 10, 2024
1 parent 039c9ba commit 69829d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/composite_model_scoping_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def test_composite_model_ply_scope(dpf_server):
ply_ids = ["P1L1__core", f"P1L1__woven_45.2"]
else:
analysis_plies = get_all_analysis_ply_names(composite_model.get_mesh())
ply_ids = [f"{solid_label}::P1L1__core", f"{shell_label}::P1L1__woven_45.2"] # noqa: E231
ply_ids = [f"{solid_label}::P1L1__core", f"{shell_label}::P1L1__woven_45.2"]

for ply in ply_ids:
assert ply in analysis_plies
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def __exit__(
out = subprocess.check_output(["docker", "stop", self.name])
self.process_stdout.write(str(out))

self.process_stdout.write(f"docker ps after stopping the container:\n") # noqa: E231
self.process_stdout.write(f"docker ps after stopping the container:\n")
self.process_stdout.write(f"\n")
out = subprocess.check_output(["docker", "ps"])
self.process_stdout.write(str(out))
Expand Down

0 comments on commit 69829d8

Please sign in to comment.