mypy: Fix unused type: ignore in manager.py

This causes mypy to error, regression introduced in
Idb149201248.

Change-Id: Ieb4a3c3e6e775ee2f8e5dc0f2d60bb8995e88cc2
This commit is contained in:
Eric Harney 2021-09-16 10:25:00 -04:00
parent 6ef65bfe5f
commit 1224574494
1 changed files with 1 additions and 1 deletions

View File

@ -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