[Python] Fix function name for Pack method for structs
This PR fixes #8422 .
Before we get this:
class ABCWordT(object):
# ABCWordT
def Pack(self, builder):
return CreateAbcword(builder, self.w)
Where the function CreateAbcword does not exist.
After we get this:
class ABCWordT(object):
# ABCWordT
def Pack(self, builder):
return CreateABCWord(builder, self.w)
And the function CreateABCWord does exist.
Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA).
View this failed invocation of the CLA check for more information.
For the most up to date status, view the checks section at the bottom of the pull request.
This pull request is stale because it has been open 6 months with no activity. Please comment or label not-stale, or this will be closed in 14 days.
This pull request was automatically closed due to no activity for 6 months plus the 14 day notice period.
I reopened this, but it may actually be fixed by #8792 (by switching the name the other way)