We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2e07fc commit 3bdf3b8Copy full SHA for 3bdf3b8
src/opengeodeweb_back/data.py
@@ -1,7 +1,7 @@
1
from sqlalchemy import String, JSON
2
from .database import database
3
import uuid
4
-from typing import List, Type
+from typing import Type
5
6
DatabaseModel : Type = database.Model
7
@@ -26,8 +26,8 @@ def create(
26
name: str,
27
geode_object: str,
28
input_file: str,
29
- additional_files: List[str]
30
- ) -> "Data":
+ additional_files: list[str]
+ ) -> Type["Data"]:
31
if input_file is None:
32
input_file = []
33
if additional_files is None:
0 commit comments