This fixes ruff linting error UP004, where a redundant `object` inheritance is present. Signed-off-by: Lukasz Mrugala <lukaszx.mrugala@intel.com>
8 lines
170 B
Python
8 lines
170 B
Python
# vim: set syntax=python ts=4 :
|
|
#
|
|
# Copyright (c) 2018 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
class DisablePyTestCollectionMixin:
|
|
__test__ = False
|