Skip to content

Commit

Permalink
Fix pylint issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
goodov committed Jan 12, 2024
1 parent 0ffcc37 commit 745ec62
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions script/lib/github.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
# You can obtain one at https://mozilla.org/MPL/2.0/.

# pylint: disable=fixme,too-few-public-methods,too-many-arguments

from __future__ import print_function
from __future__ import absolute_import
from builtins import str
Expand Down
4 changes: 3 additions & 1 deletion script/lib/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
# You can obtain one at https://mozilla.org/MPL/2.0/.

# pylint: disable=not-callable

from __future__ import print_function
from builtins import range
import os
import sys
import urllib.request
from .config import get_raw_version, get_env_var
from .config import get_raw_version

BRAVE_REPO = "brave/brave-browser"
BRAVE_CORE_REPO = "brave/brave-core"
Expand Down
1 change: 0 additions & 1 deletion script/lib/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
import zipfile

from .config import is_verbose_mode
from .env_util import get_vs_env


def tempdir(prefix=''):
Expand Down

0 comments on commit 745ec62

Please sign in to comment.