From 2a93fe4a1f50419a41ad367d72662ebb9d5b5263 Mon Sep 17 00:00:00 2001 From: v-rocheleau Date: Thu, 14 Sep 2023 20:30:59 +0000 Subject: [PATCH] fix migration type --- .../experiments/migrations/0009_v4_1_0.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/chord_metadata_service/experiments/migrations/0009_v4_1_0.py b/chord_metadata_service/experiments/migrations/0009_v4_1_0.py index 0a1e60580..53fe3d4ca 100644 --- a/chord_metadata_service/experiments/migrations/0009_v4_1_0.py +++ b/chord_metadata_service/experiments/migrations/0009_v4_1_0.py @@ -1,13 +1,13 @@ -from typing import List +from typing import List, Tuple from django.db import migrations -LIB_STRATEGY_CONVERSIONS: List[tuple[str, str]] = [ +LIB_STRATEGY_CONVERSIONS: List[Tuple[str, str]] = [ # Convert WES -> WXS ... ("WES", "WXS"), - ("Other", "OTHER") + ("Other", "OTHER"), ] -LIB_SELECTION_CONVERIONS: List[tuple[str, str]] = [ +LIB_SELECTION_CONVERIONS: List[Tuple[str, str]] = [ ("Random", "RANDOM"), ("Random PCR", "RANDOM PCR"), ("Exome capture", "other"), # 'Exome capture' no longer supported