We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 991c6b2 commit 7b51499Copy full SHA for 7b51499
1 file changed
Tools/ssl/multissltests.py
@@ -24,7 +24,8 @@
24
"""
25
from __future__ import print_function
26
27
-import abc
+from abc import abstractmethod
28
+from abc import ABCMeta
29
import argparse
30
from datetime import datetime
31
import logging
@@ -147,7 +148,7 @@
147
148
)
149
150
-class AbstractBuilder(object, metaclass=abc.ABCMeta):
151
+class AbstractBuilder(object, metaclass=ABCMeta):
152
depend_target = None
153
install_target = 'install'
154
if hasattr(os, 'process_cpu_count'):
0 commit comments