Skip to content

Commit b45d24c

Browse files
Fix order of dictionary
1 parent a2c2116 commit b45d24c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pygmt/datasets/earth_free_air_anomaly.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ def load_earth_free_air_anomaly(
105105
"""
106106
# Map data source to prefix
107107
prefix = {
108-
"earth_faa": "faa",
109-
"earth_faaerror": "faaerror",
108+
"faa": "earth_faa",
109+
"faaerror": "earth_faaerror",
110110
}.get(data_source)
111111
if prefix is None:
112112
msg = (

0 commit comments

Comments
 (0)