Aaron Luna

Results 10 comments of Aaron Luna

Updated DOCUMENTATION.md to include `Date` prompt

`super` is a function, so `accept` should return `super().accept()` NOT `super.accept()` (notice the parentheses after both `super` and `accept`. Hope that helps!

A response to the stackoverflow post, [_Test if a python string is printable_](https://stackoverflow.com/a/50731077), provides a clever way to check for non-printable characters: ```python def is_printable(s): return not any(repr(ch).startswith("'\\x") or repr(ch).startswith("'\\u")...

I had no idea that you could provide a tuple to `startswith`, thank you for pointing that out! The updated version will be in the PR.

I recently ran into this issue myself! From your code snippet it appears that you may have tried the same fix and indicated that it didn't solve the issue. Here...

FastAPI endpoints are created by decorating a function with a [path operation](https://fastapi.tiangolo.com/tutorial/first-steps/#step-3-create-a-path-operation) that specifies the HTTP method that the endpoint responds to (`@app.get("/new_order")` in the code below). The `@cache` decorator...

I tried emailing the maintainer a long time ago (July 2021) asking if I could offer my services as a maintainer to help triage issues and deal with PRs, etc....

Sorry for the delayed response, I would definitely be willing to fork and participate as a maintainer. I do not have the bandwidth to take over the project solely by...

These warnings are generated by the shelljs package, and upgrading to version 0.8.4 is necessary to remove them. I created PR filamentgroup/glyphhanger#79 which contains the fix.

Hello, everyone! I, too, use and greatly appreciate the work that has been put into flask-restplus and would be interested in helping out in any way. I am new to...