File tree Expand file tree Collapse file tree 3 files changed +1
-11
lines changed Expand file tree Collapse file tree 3 files changed +1
-11
lines changed Original file line number Diff line number Diff line change 2
2
shift_origin - Shift plot origin in x and/or y directions.
3
3
"""
4
4
5
- from __future__ import annotations
6
-
7
5
from pygmt .clib import Session
8
6
9
7
Original file line number Diff line number Diff line change 2
2
solar - Plot day-night terminators and twilight.
3
3
"""
4
4
5
- from __future__ import annotations
6
-
7
5
from typing import Literal
8
6
9
7
import pandas as pd
Original file line number Diff line number Diff line change 2
2
timestamp - Plot the GMT timestamp logo.
3
3
"""
4
4
5
- from __future__ import annotations
6
-
7
5
import warnings
8
- from typing import TYPE_CHECKING
6
+ from collections . abc import Sequence
9
7
10
8
from packaging .version import Version
11
9
from pygmt .clib import Session , __gmt_version__
12
10
from pygmt .helpers import build_arg_list , kwargs_to_strings
13
11
14
- if TYPE_CHECKING :
15
- from collections .abc import Sequence
16
-
17
-
18
12
__doctest_skip__ = ["timestamp" ]
19
13
20
14
You can’t perform that action at this time.
0 commit comments