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

AttributeError: 'NoneType' object has no attribute 'min_items' #965

Closed
aknaut opened this issue Nov 5, 2019 · 1 comment · Fixed by #969
Closed

AttributeError: 'NoneType' object has no attribute 'min_items' #965

aknaut opened this issue Nov 5, 2019 · 1 comment · Fixed by #969
Labels
bug V1 Bug related to Pydantic V1.X

Comments

@aknaut
Copy link

aknaut commented Nov 5, 2019

Bug

Please complete:

  • OS: Windows 10
  • Python version import sys; print(sys.version): 3.6.9 |Anaconda, Inc.| (default, Jul 30 2019, 14:00:49) [MSC v.1915 64 bit (AMD64)]
  • Pydantic version import pydantic; print(pydantic.VERSION): 1.0

I get an AttributeError while trying to generate a schema for a dictionary with values of type list.

Example:

from typing import Dict, List
from pydantic import BaseModel

class SomeSchema(BaseModel):
    entries: Dict[str, List[int]]

SomeSchema.schema()

Which results in AttributeError: 'NoneType' object has no attribute 'min_items'

Is this a bug or do I need to define the schema in a different way?

@aknaut aknaut added the bug V1 Bug related to Pydantic V1.X label Nov 5, 2019
@samuelcolvin
Copy link
Member

Thanks for reporting, fixed on #969. Let me know if that fixes your problem, I'll release an update in a day or two.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug V1 Bug related to Pydantic V1.X
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants