Skip to content

Commit

Permalink
ci: bump pre-commit-ci/lite-action from 1.0.2 to 1.1.0 (#96)
Browse files Browse the repository at this point in the history
* ci: bump pre-commit-ci/lite-action from 1.0.2 to 1.1.0

Bumps [pre-commit-ci/lite-action](https://github.com/pre-commit-ci/lite-action) from 1.0.2 to 1.1.0.
- [Release notes](https://github.com/pre-commit-ci/lite-action/releases)
- [Commits](pre-commit-ci/lite-action@v1.0.2...v1.1.0)

---
updated-dependencies:
- dependency-name: pre-commit-ci/lite-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* ci: Update pylint to ignore R0917

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Thomas Grimonet <thomas.grimonet@gmail.com>
  • Loading branch information
dependabot[bot] and titom73 authored Oct 15, 2024
1 parent 6c4fcb4 commit be28091
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr-management.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: pre-commit-ci/lite-action@v1.0.2
- uses: pre-commit-ci/lite-action@v1.1.0

compiling:
name: Run installation process and code compilation supported Python versions
Expand Down
1 change: 1 addition & 0 deletions eos_downloader/cli/get/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ def eos(
latest: bool = False,
branch: Union[str, None] = None,
) -> int:
# pylint: disable=R0917
"""Download EOS image from Arista website"""
console = Console()
# Get from Context
Expand Down
2 changes: 1 addition & 1 deletion eos_downloader/cli/info/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def eos_versions(
latest: bool = False,
verbose: bool = False,
) -> None:
# pylint: disable = too-many-branches
# pylint: disable = too-many-branches, R0917
"""
List Available EOS version on Arista.com website.
Expand Down
2 changes: 1 addition & 1 deletion eos_downloader/object_downloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def __init__(
token: str,
software: str = "EOS",
hash_method: str = "md5sum",
):
): # pylint: disable=R0917
"""
__init__ Class constructor
Expand Down
3 changes: 2 additions & 1 deletion pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ disable=
invalid-name,
logging-fstring-interpolation,
fixme,
line-too-long
line-too-long,
too-many-arguments

[BASIC]
good-names=runCmds, i, y, t, c, x, e, fd, ip, v
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ commands =
description = check the code style
commands =
flake8 --max-line-length=165 --config=/dev/null eos_downloader
pylint eos_downloader
pylint --rcfile=pylintrc eos_downloader
[testenv:type]
description = check typing
Expand Down

0 comments on commit be28091

Please sign in to comment.