Skip to content

Commit

Permalink
tests: remove attribute-defined-outside-init ignores
Browse files Browse the repository at this point in the history
Linting the linter.
  • Loading branch information
enku committed Jul 16, 2024
1 parent e653f6c commit e78b40e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/test_cli_addmachine.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Tests for the gbpcli "addmachine" subcommand"""

# pylint: disable=missing-docstring,attribute-defined-outside-init
# pylint: disable=missing-docstring
from argparse import ArgumentParser, Namespace

from gentoo_build_publisher import publisher
Expand Down
2 changes: 1 addition & 1 deletion tests/test_cli_addrepo.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Tests for the gbpcli "addrepo" subcommand"""

# pylint: disable=missing-docstring,attribute-defined-outside-init
# pylint: disable=missing-docstring
from argparse import ArgumentParser, Namespace

from gentoo_build_publisher.cli import addrepo
Expand Down
2 changes: 1 addition & 1 deletion tests/test_cli_worker.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# pylint: disable=missing-docstring,attribute-defined-outside-init
# pylint: disable=missing-docstring
from argparse import ArgumentParser, Namespace
from unittest import mock

Expand Down
2 changes: 1 addition & 1 deletion tests/test_jenkins.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Tests for the Jenkins interface"""

# pylint: disable=missing-class-docstring,missing-function-docstring,attribute-defined-outside-init
# pylint: disable=missing-class-docstring,missing-function-docstring
import dataclasses as dc
import io
import json
Expand Down

0 comments on commit e78b40e

Please sign in to comment.