Skip to content

Commit b40af24

Browse files
committed
d
1 parent d9ebfd2 commit b40af24

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tests/python/rest_api/test_tasks.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -736,7 +736,6 @@ def test_create_task_with_file_pattern(
736736
command = [
737737
"docker",
738738
"run",
739-
"-it",
740739
"--rm",
741740
"-u",
742741
"root:root",
@@ -751,8 +750,10 @@ def test_create_task_with_file_pattern(
751750
"/local",
752751
]
753752
try:
754-
result = subprocess.run('docker image ls | grep cvat/server', stdout=subprocess.PIPE, shell=True)
755-
print('result: ', result)
753+
result = subprocess.run(
754+
"docker image ls | grep cvat/server", stdout=subprocess.PIPE, shell=True
755+
)
756+
print("result: ", result)
756757
subprocess.check_output(command)
757758
except subprocess.CalledProcessError as ex:
758759
print(ex.returncode)

0 commit comments

Comments
 (0)