mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
isolate_tests.py: Silence spurious pylint warning about isfile() being unused
This commit is contained in:
parent
b96de320e2
commit
fc0fe4f022
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user