Unidata / python-gallery

Repository of examples showing off the use of Python for meteorology.
http://unidata.github.io/python-gallery
88 stars 31 forks source link

Mslp hi lo map #69

Closed kgoebber closed 6 years ago

kgoebber commented 6 years ago

Plotting H and L with MSLP and 100-500 hPa thickness

CLAassistant commented 6 years ago

CLA assistant check
Thank you for your submission, we really appreciate it. Like many open source projects, we ask that you all sign our Contributor License Agreement before we can accept your contribution.
1 out of 2 committers have signed the CLA.

:white_check_mark: kgoebber
:x: Kevin Goebbert


Kevin Goebbert seems not to be a GitHub user. You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please add the email address used for this commit to your account.
You have signed the CLA already but the status is still pending? Let us recheck it.

kgoebber commented 6 years ago

Sorry, I meant to put this as a separate branch from master, but I did a branch off of the other example I added last week. Also, new computer so the CLA thing is because of a different name I had in my git config files, all still associated with the same email address so that CLA appears as signed.

jrleeman commented 6 years ago

Looks like flake has caught some things. There is an unrelated data failure on meteogram currently as well.

kgoebber commented 6 years ago

Okay, I've corrected all but one of the flake8 problems. It seems it doesn't like the block quote at the beginning of the definition and I can't seem to squash it.

dopplershift commented 6 years ago

@kgoebber It doesn't like the docstring on plot_maxmin_points because it's using triple single quotes; picky I know, sorry.

kgoebber commented 6 years ago

So it should be triple double quotes?

dopplershift commented 6 years ago

Correct.

dopplershift commented 6 years ago

@kgoebber You should check your git config, these latest commits aren't attached to your account:

git config --get user.name
git config --get user.email

The email is the really important part for linking here.

kgoebber commented 6 years ago

They are correct now (even before last commit), but was not set up prior to the initial commit. Would it be easier to kill this, then I'll save off copy of file, delete branch and resubmit PR with new name?

dopplershift commented 6 years ago

You could fix it by doing a git rebase to squash things together and then a git commit --amend --reset-author. Doing what you described is fine though.