-
-
Notifications
You must be signed in to change notification settings - Fork 945
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(request): Add function to get param as date #498
Conversation
""" | ||
Args: | ||
name (str): Parameter name, case-sensitive (e.g., 'ids'). | ||
format_string (str): String used to parse the param value into a date. # NOQA |
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.
The NOQA actually gets rendered in the sphinx docs, so we'll have to come up with a different solution. For this line, it can simply be wrapped.
Once the docstring is fixed up, LGTM |
A user requested a feature where a param could be automatically parsed into a date. closes falconry#293
Docstring cleaned up, let me know how it looks. |
Args: | ||
name (str): Parameter name, case-sensitive (e.g., 'ids'). | ||
format_string (str): String used to parse the param value into a | ||
date. |
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.
Did this get merged? I can't tell if I need to rebase #493 on top of this functionality. |
Nope looks like I killed this prematurely. @kgriffs @jmvrbanac I submitted a new PR #519 for these changes, rebased to current master. |
A user requested a feature where a param could be automatically parsed into a date.
closes #293
Supersedes #487