diff --git a/tests/test_physics/test_representations/test_bargmann.py b/tests/test_physics/test_representations/test_bargmann.py index 4dc0040f1..022927d09 100644 --- a/tests/test_physics/test_representations/test_bargmann.py +++ b/tests/test_physics/test_representations/test_bargmann.py @@ -14,6 +14,8 @@ """This module contains tests for ``Representation`` objects.""" +# pylint: disable = too-many-public-methods + from unittest.mock import patch import numpy as np diff --git a/tests/test_physics/test_representations/test_fock.py b/tests/test_physics/test_representations/test_fock.py index a021fdb20..614dc8fa8 100644 --- a/tests/test_physics/test_representations/test_fock.py +++ b/tests/test_physics/test_representations/test_fock.py @@ -14,6 +14,8 @@ """This module contains tests for ``Representation`` objects.""" +# pylint: disable = missing-function-docstring + from unittest.mock import patch import numpy as np @@ -27,8 +29,6 @@ # original settings autocutoff_max0 = settings.AUTOCUTOFF_MAX_CUTOFF -# pylint: disable = missing-function-docstring - class TestFockRepresentation: # pylint:disable=too-many-public-methods r"""Tests the Fock Representation."""