diff --git a/tests/test_hvac.py b/tests/test_hvac.py index 63d5fb09..190a202a 100644 --- a/tests/test_hvac.py +++ b/tests/test_hvac.py @@ -2,8 +2,6 @@ from mytoyota.models.hvac import Hvac -# pylint: disable=no-self-use - class TestHvac: """pytest functions to test Hvac""" diff --git a/tests/test_myt.py b/tests/test_myt.py index a32bd04c..0bfe72ed 100644 --- a/tests/test_myt.py +++ b/tests/test_myt.py @@ -20,8 +20,6 @@ ) from mytoyota.models.trip import DetailedTrip, Trip, TripEvent -# pylint: disable=no-self-use - class OfflineController: """Provides a Controller class that can be used for testing.""" diff --git a/tests/test_myt_online.py b/tests/test_myt_online.py index e829f448..5adcb80e 100644 --- a/tests/test_myt_online.py +++ b/tests/test_myt_online.py @@ -7,8 +7,6 @@ from mytoyota.client import MyT from mytoyota.exceptions import ToyotaLoginError -# pylint: disable=no-self-use - class TestMyTOnline: """pytest functions to test MyT using the online services""" diff --git a/tests/test_parking_location.py b/tests/test_parking_location.py index 9b36e717..0873d818 100644 --- a/tests/test_parking_location.py +++ b/tests/test_parking_location.py @@ -2,8 +2,6 @@ from mytoyota.models.location import ParkingLocation # pylint: disable=import-error -# pylint: disable=no-self-use - class TestParkingLocation: """pytest functions to test ParkingLocation""" diff --git a/tests/test_sensors.py b/tests/test_sensors.py index 64094be8..565470d3 100644 --- a/tests/test_sensors.py +++ b/tests/test_sensors.py @@ -13,8 +13,6 @@ Windows, ) -# pylint: disable=no-self-use - class TestSensors: # pylint: disable=too-many-public-methods """pytest functions to test Sensors""" diff --git a/tests/test_statistics.py b/tests/test_statistics.py index 8c73e71d..2a2d32f7 100644 --- a/tests/test_statistics.py +++ b/tests/test_statistics.py @@ -8,8 +8,6 @@ from mytoyota.statistics import Statistics -# pylint: disable=no-self-use - class TestStatistics: """pytest functions to test Statistics""" diff --git a/tests/test_utils.py b/tests/test_utils.py index da6a68ba..161b695e 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -3,8 +3,6 @@ import pytest from mytoyota.exceptions import ToyotaInvalidToken - -# pylint: disable=no-self-use from mytoyota.utils.conversions import ( convert_to_liter_per_100_miles, convert_to_miles, diff --git a/tests/test_utils_logs.py b/tests/test_utils_logs.py index ccf9d588..a00941c6 100644 --- a/tests/test_utils_logs.py +++ b/tests/test_utils_logs.py @@ -2,8 +2,6 @@ from mytoyota.utils.logs import censor, censor_dict, censor_vin -# pylint: disable=no-self-use - class TestLogUtilities: """pytest functions for testing logs""" diff --git a/tests/test_vehicle.py b/tests/test_vehicle.py index 64fc631e..14f4ef80 100644 --- a/tests/test_vehicle.py +++ b/tests/test_vehicle.py @@ -10,8 +10,6 @@ from mytoyota.models.sensors import Sensors from mytoyota.models.vehicle import Vehicle -# pylint: disable=no-self-use - class TestVehicle: """pytest functions for Vehicle object"""