Skip to content
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

[Bug] #200

Open
hu0514 opened this issue Jun 5, 2023 · 3 comments
Open

[Bug] #200

hu0514 opened this issue Jun 5, 2023 · 3 comments

Comments

@hu0514
Copy link

hu0514 commented Jun 5, 2023

Describe the bug

def swagger_auto_scheme(doc_scheme, content_type='application/json', gen_app_headers=True):
    def inner(func):
        openapi.summary('111111111111111111111111')(func)
        openapi.body(content=BaseResponse)(func)
        return func
    return inner

@swagger_auto_scheme(test)
async def test(request):
    pass

Adding body overrides summary and is normal if not added

@hu0514
Copy link
Author

hu0514 commented Jun 6, 2023

I want to put the body method in my own decorator, it doesn't seem to work, I don't know why

@shaib
Copy link

shaib commented Jul 15, 2023

Hi,

I was looking at the list of bugs and was curious abut this bug with the empty title. I am not (at least yet) a developer with the Sanic project, but at first look I had a hard time seeing even what you want here.

One way you could make yourself clearer is to format your code. I am putting a guess here -- this is done by putting a line ```python before the code and a line ``` after it:

def swagger_auto_scheme(doc_scheme, content_type='application/json', gen_app_headers=True):
    def inner(func):
        openapi.summary('111111111111111111111111')(func)
        openapi.body(content=BaseResponse)(func)
        return func
    return inner

@swagger_auto_scheme(test)
async def test(request):
    pass

If this is correct than I also have to say, this code looks confusing -- you seem to be both defining a function named test and using something imported named test.

@prryplatypus
Copy link
Member

@hu0514 what exactly is openapi? Where are you importing it from? Please include all the imports with your code sample and fill in ALL the fields in the bug report template, such as expected behaviour and explaining how that's different to what's happening.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants