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 9dcb0b6 commit 8822dc6Copy full SHA for 8822dc6
stac_validator/validate.py
@@ -1,7 +1,7 @@
1
import json
2
import os
3
from json.decoder import JSONDecodeError
4
-from typing import Dict, Optional
+from typing import Dict, List, Optional
5
from urllib.error import HTTPError, URLError
6
7
import click # type: ignore
@@ -60,7 +60,7 @@ def __init__(
60
self.stac_file = stac_file
61
self.item_collection = item_collection
62
self.pages = pages
63
- self.message: list = []
+ self.message: List = []
64
self.schema = custom
65
self.links = links
66
self.assets = assets
0 commit comments