Skip to content

Commit 2964869

Browse files
Fix line length
1 parent 01e6a41 commit 2964869

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

pygmt/src/pygmtlogo.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,12 @@ def _bg_arrow_coords():
147147
# x0, y0 is the same as in _letter_t_coords().
148148
x0 = thick_gt / 2
149149
y0 = 1.8 * x0 * np.sqrt(3)
150-
arrow_x = [-x0 * 2 - thick_comp/2, -thick_comp/2, thick_comp/2, x0 * 2 + thick_comp/2]
150+
arrow_x = [
151+
-x0 * 2 - thick_comp / 2,
152+
-thick_comp / 2,
153+
thick_comp / 2,
154+
x0 * 2 + thick_comp / 2,
155+
]
151156
arrow_y = [-r0 + y0, -r0, -r0, -r0 + y0]
152157
return {"x": arrow_x, "y": arrow_y}
153158

0 commit comments

Comments
 (0)