Skip to content

Commit 97d1af1

Browse files
Use max line length
Co-authored-by: Dongdong Tian <seisman.info@gmail.com>
1 parent 7f8f99b commit 97d1af1

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

pygmt/src/pygmtlogo.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -158,10 +158,7 @@ def _vline_coords(gap=0):
158158
Coordinates for vertical lines.
159159
"""
160160
x0 = (thick_gt + gap) / 2
161-
return {
162-
"x": [-x0, -x0, x0, x0],
163-
"y": [vline_y, r3, r3, vline_y],
164-
}
161+
return {"x": [-x0, -x0, x0, x0], "y": [vline_y, r3, r3, vline_y]}
165162

166163
# %%
167164
fig = pygmt.Figure()

0 commit comments

Comments
 (0)