Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
8bdb98e
Figure.colorbar: Add parameters position/width/height and more to spe…
seisman Aug 10, 2025
573f0a7
Fix typos
seisman Dec 20, 2025
800f9b0
Merge branch 'main' into refactor/colorbar
seisman Dec 25, 2025
07098f5
Merge branch 'main' into refactor/colorbar
seisman Dec 26, 2025
b04b4e3
Add tests for the complicated -D option
seisman Dec 26, 2025
c2fcfd1
Merge branch 'main' into refactor/colorbar
seisman Dec 30, 2025
fb10768
Fix docstring
seisman Dec 30, 2025
d62eb93
Fix term to gmt-term
seisman Dec 30, 2025
93fe643
Fix
seisman Dec 31, 2025
2df56bf
Merge branch 'main' into refactor/colorbar
seisman Dec 31, 2025
75e09a3
Add tests for colorbar
seisman Jan 1, 2026
a638a03
Fix typos
seisman Jan 1, 2026
627003e
Merge branch 'main' into refactor/colorbar
seisman Jan 2, 2026
65f094a
Update pygmt/src/colorbar.py
seisman Jan 6, 2026
a3aa3d8
Merge branch 'main' into refactor/colorbar
yvonnefroehlich Jan 6, 2026
1765d90
Update pygmt/src/colorbar.py
seisman Jan 7, 2026
5ad8d5d
Merge branch 'main' into refactor/colorbar
seisman Jan 7, 2026
c86db76
Add one more test
seisman Jan 7, 2026
57f8c39
Rename nan_rectangle/nan_rectangle_position to nan/nan_position
seisman Jan 7, 2026
405383c
Rename sidebar_triangles/sidebar_triangles_height to fg_triangle/bg_t…
seisman Jan 7, 2026
2b272df
Fix type.hints
seisman Jan 8, 2026
6230d31
Simplify _alias_option_D
seisman Jan 8, 2026
829f8c3
Add more tests
seisman Jan 8, 2026
43d2479
Update test_subplot.py with the fig.colorbar syntax
seisman Jan 8, 2026
d330cbc
Improve docstrings for nan_position
seisman Jan 9, 2026
2c61de8
Improve docstrings for frame
seisman Jan 9, 2026
abcb0b4
Fix typos
seisman Jan 9, 2026
c15f49f
Remove print statements
seisman Jan 9, 2026
f394221
Apply suggestions from code review
seisman Jan 10, 2026
177993a
Fix styling
seisman Jan 10, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove print statements
  • Loading branch information
seisman committed Jan 9, 2026
commit c15f49f808d5f3e832e57833e2981650c728de9c
3 changes: 0 additions & 3 deletions pygmt/src/colorbar.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ def _alias_option_D( # noqa: N802, PLR0913

# Build the +m modifier from move_text/label_as_column
modifier_m = None
print(move_text)
if move_text or label_as_column:
modifier_m = ""

Expand All @@ -69,8 +68,6 @@ def _alias_option_D( # noqa: N802, PLR0913
if label_as_column:
modifier_m += "c"

print(modifier_m)

return [
Alias(position, name="position"),
Alias(length, name="length", prefix="+w"), # +wlength/width
Expand Down