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

Schema with no required fields crashes #598

Open
daliaMarzouk90 opened this issue Oct 13, 2023 · 1 comment
Open

Schema with no required fields crashes #598

daliaMarzouk90 opened this issue Oct 13, 2023 · 1 comment

Comments

@daliaMarzouk90
Copy link

I am using marshmellow schema in generating swagger documentation. When I am trying to create a schema without required fields the code crashes

if len(definitions[v.__name__]['required']) != 0:
                    new[k][0]['required'] = True

How to avoid this problem

@yswf
Copy link

yswf commented May 20, 2024

You can determine whether the key exists, modify the source code

if 'required' in definitions[v.__name__] and len(definitions[v.__name__]['required']) != 0:
    new[k][0]['required'] = True

yswf added a commit to yswf/flasgger that referenced this issue May 20, 2024
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

2 participants