Skip to content

Commit fe5b4e2

Browse files
committed
Refactor code structure for improved readability and maintainability
1 parent f3f30d9 commit fe5b4e2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/integration/test_full_cmorisation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,9 @@ def _validate_with_prepare(self, output_file, cmor_name, table_path):
163163
table_arg,
164164
output_arg,
165165
]
166-
result = subprocess.run( # nosec
166+
result = subprocess.run(
167167
cmd_args, capture_output=True, text=True, check=False, shell=False
168-
)
168+
) # nosec B603, B602
169169

170170
if result.returncode != 0:
171171
pytest.fail(

0 commit comments

Comments
 (0)