Skip to content

Commit b42d147

Browse files
committed
Remove TYPE_CHECKING
1 parent 19d637f commit b42d147

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

pystac/extensions/item_assets.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from __future__ import annotations
44

55
import warnings
6-
from typing import TYPE_CHECKING, Any, Literal
6+
from typing import Any, Literal
77

88
import pystac
99
from pystac.errors import DeprecatedWarning
@@ -13,9 +13,6 @@
1313
from pystac.serialization.identify import STACJSONDescription, STACVersionID
1414
from pystac.utils import get_required
1515

16-
if TYPE_CHECKING:
17-
pass
18-
1916
SCHEMA_URI = "https://stac-extensions.github.io/item-assets/v1.0.0/schema.json"
2017

2118
ITEM_ASSETS_PROP = "item_assets"

0 commit comments

Comments
 (0)