Skip to content

Commit 5cec4d8

Browse files
committed
Drop useless use of abc.ABCMeta
1 parent 7e08337 commit 5cec4d8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

testinfra/modules/base.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,10 @@
99
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1010
# See the License for the specific language governing permissions and
1111
# limitations under the License.
12-
import abc
1312
import typing
1413

1514

16-
class Module(metaclass=abc.ABCMeta):
15+
class Module:
1716
if typing.TYPE_CHECKING:
1817
import testinfra.host
1918

0 commit comments

Comments
 (0)