Skip to content

Commit 0e6a8e6

Browse files
authored
Added import for typing objects (#1290)
1 parent 311833f commit 0e6a8e6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

docs/concepts.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -303,6 +303,7 @@ for reading from AWS's S3 cloud object storage using `boto3
303303
import boto3
304304
from pystac import Link
305305
from pystac.stac_io import DefaultStacIO, StacIO
306+
from typing import Union, Any
306307
307308
class CustomStacIO(DefaultStacIO):
308309
def __init__(self):
@@ -345,6 +346,7 @@ to take advantage of connection pooling using a `requests.Session
345346
from urllib.parse import urlparse
346347
import requests
347348
from pystac.stac_io import DefaultStacIO, StacIO
349+
from typing import Union, Any
348350
349351
class ConnectionPoolingIO(DefaultStacIO):
350352
def __init__(self):

0 commit comments

Comments
 (0)