We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26c484b commit 6af07a8Copy full SHA for 6af07a8
pygmt/alias.py
@@ -67,7 +67,7 @@ def convert_aliases():
67
params = p_locals.pop("kwargs", {}) | p_locals
68
69
# Define a dict to store GMT option flags and arguments
70
- kwdict = defaultdict(lambda: "") # default value is an empty string
+ kwdict = defaultdict(str) # default value is an empty string
71
for alias in p_locals.get("_aliases"):
72
value = params.get(alias.name)
73
if is_nonstr_iter(value):
0 commit comments