From 7603a7a1c8b9277e6d261e40683e82b24e29a03d Mon Sep 17 00:00:00 2001 From: jan Date: Mon, 28 Feb 2022 23:00:53 -0800 Subject: [PATCH] fix typevar naming --- masque/library/device_library.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/masque/library/device_library.py b/masque/library/device_library.py index 554590e..4f8de3a 100644 --- a/masque/library/device_library.py +++ b/masque/library/device_library.py @@ -16,8 +16,8 @@ from .. import Pattern logger = logging.getLogger(__name__) -L = TypeVar('L', bound='DeviceLibrary') -D = TypeVar('D', bound='LibDeviceLibrary') +D = TypeVar('D', bound='DeviceLibrary') +L = TypeVar('L', bound='LibDeviceLibrary') class DeviceLibrary: