Skip to content

Commit fbd830b

Browse files
committed
Update pylint comments relating to stat ignore statement.
1 parent ad74f7c commit fbd830b

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/funfuzz/autobisectjs/autobisectjs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import os
1717
import re
1818
import shutil
19-
import stat # Fixed after pylint 1.7.2 was released pylint: disable=bad-python3-import
19+
import stat # Likely fixed in pylint 1.8.x series # pylint: disable=bad-python3-import
2020
import subprocess
2121
import time
2222
from optparse import OptionParser # pylint: disable=deprecated-module

src/funfuzz/util/download_build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import platform
1616
import re
1717
import shutil
18-
import stat # Fixed after pylint 1.7.2 was released pylint: disable=bad-python3-import
18+
import stat # Likely fixed in pylint 1.8.x series # pylint: disable=bad-python3-import
1919
import subprocess
2020
import sys
2121
import urllib

src/funfuzz/util/subprocesses.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import platform
1616
import re
1717
import shutil
18-
import stat # Fixed after pylint 1.7.2 was released pylint: disable=bad-python3-import
18+
import stat # Likely fixed in pylint 1.8.x series # pylint: disable=bad-python3-import
1919
import subprocess
2020
import sys
2121
import time

0 commit comments

Comments
 (0)