Skip to content

Commit e8f9c11

Browse files
committed
Add annotations import
Add __future__.annotations import to modules 'datasets' and 'server'
1 parent 3a918c4 commit e8f9c11

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

erddapy/array_like/datasets.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
"""Classes to represent ERDDAP datasets."""
22

3+
from __future__ import annotations
4+
35
from pathlib import Path
46
from typing import Union
57

erddapy/array_like/server.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
"""Class ERDDAPServer to represent an ERDDAP server connection."""
22

3+
from __future__ import annotations
4+
35
from erddapy.array_like.connection import ERDDAPConnection
46
from erddapy.array_like.datasets import ERDDAPDataset
57

0 commit comments

Comments
 (0)