Skip to content

Commit 8822dc6

Browse files
committed
use typing list
1 parent 9dcb0b6 commit 8822dc6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stac_validator/validate.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import json
22
import os
33
from json.decoder import JSONDecodeError
4-
from typing import Dict, Optional
4+
from typing import Dict, List, Optional
55
from urllib.error import HTTPError, URLError
66

77
import click # type: ignore
@@ -60,7 +60,7 @@ def __init__(
6060
self.stac_file = stac_file
6161
self.item_collection = item_collection
6262
self.pages = pages
63-
self.message: list = []
63+
self.message: List = []
6464
self.schema = custom
6565
self.links = links
6666
self.assets = assets

0 commit comments

Comments
 (0)