-
Notifications
You must be signed in to change notification settings - Fork 335
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
feat: support keyword text match #2256
Conversation
Signed-off-by: longjiquan <[email protected]>
Signed-off-by: longjiquan <[email protected]>
@@ -360,7 +360,7 @@ def _parse_type_params(self): | |||
if k in self._kwargs: |
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.
update comment in line 357
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.
OK.
Signed-off-by: longjiquan <[email protected]>
if self._kwargs: | ||
for k in COMMON_TYPE_PARAMS: | ||
if k in self._kwargs: | ||
if self._type_params is None: | ||
self._type_params = {} | ||
self._type_params[k] = int(self._kwargs[k]) | ||
self._type_params[k] = self._kwargs[k] |
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.
need modify is_legal_dimision to cover string format.
Signed-off-by: longjiquan <[email protected]>
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: czs007, longjiquan The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
No description provided.