fix typevar naming

This commit is contained in:
jan 2022-02-28 23:00:53 -08:00
parent 0c1954c9d1
commit 7603a7a1c8

View File

@ -16,8 +16,8 @@ from .. import Pattern
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
L = TypeVar('L', bound='DeviceLibrary') D = TypeVar('D', bound='DeviceLibrary')
D = TypeVar('D', bound='LibDeviceLibrary') L = TypeVar('L', bound='LibDeviceLibrary')
class DeviceLibrary: class DeviceLibrary: