Skip to content

Commit

Permalink
use typing list
Browse files Browse the repository at this point in the history
  • Loading branch information
jonhealy1 committed Nov 20, 2023
1 parent 9dcb0b6 commit 8822dc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stac_validator/validate.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import json
import os
from json.decoder import JSONDecodeError
from typing import Dict, Optional
from typing import Dict, List, Optional
from urllib.error import HTTPError, URLError

import click # type: ignore
Expand Down Expand Up @@ -60,7 +60,7 @@ def __init__(
self.stac_file = stac_file
self.item_collection = item_collection
self.pages = pages
self.message: list = []
self.message: List = []
self.schema = custom
self.links = links
self.assets = assets
Expand Down

0 comments on commit 8822dc6

Please sign in to comment.