From 12245744946aabd7d7ebc0867c6a3df0968173d8 Mon Sep 17 00:00:00 2001 From: Eric Harney Date: Thu, 16 Sep 2021 10:25:00 -0400 Subject: [PATCH] mypy: Fix unused type: ignore in manager.py This causes mypy to error, regression introduced in Idb149201248. Change-Id: Ieb4a3c3e6e775ee2f8e5dc0f2d60bb8995e88cc2 --- cinder/manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cinder/manager.py b/cinder/manager.py index 3789cf53a1b..373fe0923a9 100644 --- a/cinder/manager.py +++ b/cinder/manager.py @@ -96,7 +96,7 @@ class Manager(base.Base, PeriodicTasks): self.cluster = cluster self.additional_endpoints: list = [] self.availability_zone = CONF.storage_availability_zone - super().__init__() # type: ignore + super().__init__() def _set_tpool_size(self, nthreads: int) -> None: # NOTE(geguileo): Until PR #472 is merged we have to be very careful