Merge "Make ``MechDriverSetupBase`` abstract"

This commit is contained in:
Zuul 2022-05-23 21:17:09 +00:00 committed by Gerrit Code Review
commit 84da90585a
1 changed files with 2 additions and 1 deletions

View File

@ -12,6 +12,7 @@
# under the License.
#
import abc
import collections
import copy
import datetime
@ -75,7 +76,7 @@ OvnRevNumberRow = collections.namedtuple(
'OvnRevNumberRow', ['created_at'])
class MechDriverSetupBase:
class MechDriverSetupBase(abc.ABC):
def setUp(self):
config.register_common_config_options()
super().setUp()