Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Figure.timestamp to plot the GMT timestamp logo #2208
Add Figure.timestamp to plot the GMT timestamp logo #2208
Changes from 1 commit
c8206ec
2096760
e0bb6bb
4d6d777
fffe3cd
54f4307
fe8eeac
97574ac
1e8de17
79460fb
7031448
7ad112c
b057ad8
f92d272
cecf6de
7dd74d7
06049a6
876d963
752273e
f6795a9
9eba2a9
92c285a
776981b
c771183
386882e
e3580e7
41f5419
4def360
bc64e8c
78c2307
e6248c2
d989b22
960508f
16c0368
98b6762
b8a7fbb
688f6b0
6e168e1
5857866
01a3cbb
4fa2e72
0c07a48
e4bd94c
0079643
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please note that we can't use decorator
@kwargs_to_strings(offset="sequence")
here, because the decorator can only deal with keyword arguments and doesn't work for the default values. I.e., it doesn't work forFigure.timestamp()
but works forFigure.timestamp(offset=["-54p", "-54p"])
, althoughoffset
defaults to["-54p", "-54p"]
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Related issue report at #2361.