Skip to content

Commit

Permalink
Add annotations import
Browse files Browse the repository at this point in the history
  Add __future__.annotations import to modules 'datasets' and 'server'
  • Loading branch information
vinisalazar committed Oct 29, 2022
1 parent 3a918c4 commit e8f9c11
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions erddapy/array_like/datasets.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
"""Classes to represent ERDDAP datasets."""

from __future__ import annotations

from pathlib import Path
from typing import Union

Expand Down
2 changes: 2 additions & 0 deletions erddapy/array_like/server.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
"""Class ERDDAPServer to represent an ERDDAP server connection."""

from __future__ import annotations

from erddapy.array_like.connection import ERDDAPConnection
from erddapy.array_like.datasets import ERDDAPDataset

Expand Down

0 comments on commit e8f9c11

Please sign in to comment.