Skip to content

Commit

Permalink
chore : Removed vestigial/no longer needed pylint disable directives (#…
Browse files Browse the repository at this point in the history
…1327)

* fixes #1247: Removed vestigial/no longer needed pylint disable directives
  • Loading branch information
GurpreetSarangal committed Aug 11, 2021
1 parent 91041e9 commit a20c29b
Show file tree
Hide file tree
Showing 11 changed files with 0 additions and 12 deletions.
1 change: 0 additions & 1 deletion cve_bin_tool/async_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE."

# pylint: disable=too-many-arguments

""" Utility classes for the CVE Binary Tool """

Expand Down
1 change: 0 additions & 1 deletion cve_bin_tool/checkers/expat.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Copyright (C) 2021 Intel Corporation
# SPDX-License-Identifier: GPL-3.0-or-later

# pylint: disable=anomalous-backslash-in-string, invalid-name
r"""
CVE checker for libexpat
Expand Down
1 change: 0 additions & 1 deletion cve_bin_tool/checkers/libgcrypt.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Copyright (C) 2021 Intel Corporation
# SPDX-License-Identifier: GPL-3.0-or-later

# pylint: disable=invalid-name
"""
CVE checker for libgcrypt
Expand Down
1 change: 0 additions & 1 deletion cve_bin_tool/checkers/libjpeg_turbo.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Copyright (C) 2021 Intel Corporation
# SPDX-License-Identifier: GPL-3.0-or-later

# pylint: disable=invalid-name

"""
CVE checker for libjpg-turbo
Expand Down
1 change: 0 additions & 1 deletion cve_bin_tool/checkers/liblas.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Copyright (C) 2021 Intel Corporation
# SPDX-License-Identifier: GPL-3.0-or-later

# pylint: disable=invalid-name
"""
CVE checker for liblas
Expand Down
1 change: 0 additions & 1 deletion cve_bin_tool/checkers/systemd.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Copyright (C) 2021 Intel Corporation
# SPDX-License-Identifier: GPL-3.0-or-later

# pylint: disable=invalid-name
"""
CVE checker for systemd
Expand Down
1 change: 0 additions & 1 deletion cve_bin_tool/checkers/xerces.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Copyright (C) 2021 Intel Corporation
# SPDX-License-Identifier: GPL-3.0-or-later

# pylint: disable=invalid-name

"""
CVE checker for libxerces
Expand Down
1 change: 0 additions & 1 deletion cve_bin_tool/cli.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Copyright (C) 2021 Intel Corporation
# SPDX-License-Identifier: GPL-3.0-or-later

# pylint: disable=invalid-name

"""
This tool scans for a number of common, vulnerable open source components
Expand Down
2 changes: 0 additions & 2 deletions cve_bin_tool/extractor.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# Copyright (C) 2021 Intel Corporation
# SPDX-License-Identifier: GPL-3.0-or-later

# pylint: disable=keyword-arg-before-vararg
# disabled for python2 compatibility reasons
"""
Extraction of archives
"""
Expand Down
1 change: 0 additions & 1 deletion cve_bin_tool/util.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Copyright (C) 2021 Intel Corporation
# SPDX-License-Identifier: GPL-3.0-or-later

# pylint: disable=too-many-arguments
""" Utility classes for the CVE Binary Tool """
import fnmatch
import os
Expand Down
1 change: 0 additions & 1 deletion test/test_scanner.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Copyright (C) 2021 Intel Corporation
# SPDX-License-Identifier: GPL-3.0-or-later

# pylint: disable=too-many-public-methods, too-many-arguments, fixme
"""
CVE-bin-tool tests
"""
Expand Down

0 comments on commit a20c29b

Please sign in to comment.