Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
maocorte committed Jul 26, 2024
1 parent e1a5512 commit 009dd89
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions api/tests/dao/model_dao_test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from typing import Dict, List
import uuid

from app.db.dao.model_dao import ModelDAO
Expand Down Expand Up @@ -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'},
]
Expand Down

0 comments on commit 009dd89

Please sign in to comment.