From 009dd892a7bed10541776b9c353f65068cb22c93 Mon Sep 17 00:00:00 2001 From: "mauro.cortellazzi" Date: Fri, 26 Jul 2024 13:04:35 +0200 Subject: [PATCH] fix typo --- api/tests/dao/model_dao_test.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/api/tests/dao/model_dao_test.py b/api/tests/dao/model_dao_test.py index ec98ac96..f388f052 100644 --- a/api/tests/dao/model_dao_test.py +++ b/api/tests/dao/model_dao_test.py @@ -1,4 +1,3 @@ -from typing import Dict, List import uuid from app.db.dao.model_dao import ModelDAO @@ -31,7 +30,7 @@ def test_get_by_uuid_empty(self): def test_update(self): model = db_mock.get_sample_model() self.model_dao.insert(model) - new_features = List[Dict] = [ + new_features = [ {'name': 'feature1', 'type': 'string', 'fieldType': 'categorical'}, {'name': 'feature2', 'type': 'int', 'fieldType': 'numerical'}, ]