Skip to content

Commit

Permalink
pylint cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
awnawab committed Jul 28, 2023
1 parent 189907c commit 533cbfa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion transformations/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
# granted to it by virtue of its status as an intergovernmental organisation
# nor does it submit to any jurisdiction.

from pathlib import Path
import shutil
import pytest
import yaml
from pathlib import Path

from loki import as_tuple, Frontend
import loki.frontend
Expand Down
2 changes: 1 addition & 1 deletion transformations/tests/test_ecwam.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def test_ecwam(here, write_script, frontend=FP):
try:
execute([str(script)], cwd=here/'build', silent=False, env=env)
with open(here/"build/wamrun_48/logs/model/stdout.log") as reader:
lines = [line for line in reader]
lines = list(reader)

if 'Validation FAILED' in lines[-1]:
failures[binary] = 'Validation failed'
Expand Down

0 comments on commit 533cbfa

Please sign in to comment.