Skip to content

Commit fc11b37

Browse files
committed
fix(LAB-3861): fix pyright
1 parent 6874805 commit fc11b37

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/kili/presentation/client/label.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1365,7 +1365,7 @@ def append_labels_from_shapefiles(
13651365
job_names: List[str],
13661366
category_names: List[str],
13671367
from_epsgs: Optional[List[int]] = None,
1368-
label_type: Optional[LabelType] = "DEFAULT",
1368+
label_type: LabelType = "DEFAULT",
13691369
step_name: Optional[str] = None,
13701370
model_name: Optional[str] = None,
13711371
):
@@ -1426,7 +1426,7 @@ def append_labels_from_geojson_files(
14261426
geojson_file_paths: List[str],
14271427
job_names: Optional[List[str]] = None,
14281428
category_names: Optional[List[str]] = None,
1429-
label_type: Optional[LabelType] = "DEFAULT",
1429+
label_type: LabelType = "DEFAULT",
14301430
step_name: Optional[str] = None,
14311431
model_name: Optional[str] = None,
14321432
):

0 commit comments

Comments
 (0)