isolate_tests.py: Silence spurious pylint warning about isfile() being unused

This commit is contained in:
Kamil Śliwak 2021-01-21 16:18:24 +01:00
parent b96de320e2
commit fc0fe4f022

View File

@ -7,7 +7,8 @@ import sys
import re
import os
import hashlib
from os.path import join, isfile
# Pylint for some reason insists that isfile() is unused
from os.path import join, isfile # pylint: disable=unused-import
def extract_test_cases(path):