Skip to content

Commit 3bdf3b8

Browse files
committed
Type["Datas"]
1 parent f2e07fc commit 3bdf3b8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/opengeodeweb_back/data.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from sqlalchemy import String, JSON
22
from .database import database
33
import uuid
4-
from typing import List, Type
4+
from typing import Type
55

66
DatabaseModel : Type = database.Model
77

@@ -26,8 +26,8 @@ def create(
2626
name: str,
2727
geode_object: str,
2828
input_file: str,
29-
additional_files: List[str]
30-
) -> "Data":
29+
additional_files: list[str]
30+
) -> Type["Data"]:
3131
if input_file is None:
3232
input_file = []
3333
if additional_files is None:

0 commit comments

Comments
 (0)