Skip to content

Commit 7216577

Browse files
author
Meghan Jones
committed
Format pygmt/src/project.py
1 parent 3f552ac commit 7216577

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pygmt/src/project.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,9 @@ def project(data=None, x=None, y=None, z=None, outfile=None, **kwargs):
219219
"The `data` parameter must be specified unless `generate` is used."
220220
)
221221
if "G" in kwargs and "F" in kwargs:
222-
raise GMTInvalidInput("The `convention` parameter is not allowed with `generate`.")
222+
raise GMTInvalidInput(
223+
"The `convention` parameter is not allowed with `generate`."
224+
)
223225

224226
with GMTTempFile(suffix=".csv") as tmpfile:
225227
if outfile is None: # Output to tmpfile if outfile is not set

0 commit comments

Comments
 (0)