Giter Site home page Giter Site logo

Comments (6)

jrkarnes avatar jrkarnes commented on June 14, 2024

I didn't have a field where it makes sense to provide additional context after the example_code portion, so I have opted to do so here.

In trying to resolve this, I did a little digging and have a few more things to report.

Dismantling the Forward Reference

I thought to try inverting the order of my classes to avoid a forward reference thinking that this would solve the issue. It did not. This code produces the same error as was submitted:

from pydantic import BaseModel
from typing import List, Optional

class StatelessRule(BaseModel):
    pass

class StatelessRulesAndCustomActions(BaseModel):
    StatelessRules: Optional[List[StatelessRule]] = None

class RulesSource(BaseModel):
    StatelessRulesAndCustomActions: Optional["StatelessRulesAndCustomActions"] = None

def test_the_bug():
  # Create instances of the classes to trigger type checking
  rules_source = RulesSource(StatelessRulesAndCustomActions=StatelessRulesAndCustomActions(StatelessRules=[StatelessRule()]))

Check if Name Collisions Are Allowed
So then I got to thinking that maybe this is just a constraint about Pydantic that I was unaware of and wrote another test using a different, but related, section of my real code. The name collision is definitely allowed when not used with Optional[] as the below code will execute without any problems in pytest:

from pydantic import BaseModel
from typing import Dict, List

class CustomActionDefinition(BaseModel):
    PublishMetricAction: Dict[str, List[Dict[str, str]]]

class CustomAction(BaseModel):
    ActionName: str
    CustomActionDefinition: CustomActionDefinition

def test_property_name_collision_allowed():
    custom_action = CustomAction(
        ActionName="foo",
        CustomActionDefinition={"PublishMetricAction": {"bar": [{"baz": "buzz"}]}}
    )

Check if the problem is really a name collision
At this point, I went back to the original code and renamed StatelessRulesAndCustomActions to StatelessRulesAndCustomActionsModel and magically the error went away. The below code runs as expected.

from pydantic import BaseModel
from typing import Dict, List, Optional

class StatelessRule(BaseModel):
    pass

class StatelessRulesAndCustomActionsModel(BaseModel):
    StatelessRules: Optional[List[StatelessRule]] = None

class RulesSource(BaseModel):
    StatelessRulesAndCustomActions: Optional["StatelessRulesAndCustomActionsModel"] = None

def test_the_bug():
  # Create instances of the classes to trigger type checking
  rules_source = RulesSource(StatelessRulesAndCustomActions=StatelessRulesAndCustomActionsModel(StatelessRules=[StatelessRule()]))

from pydantic.

Viicos avatar Viicos commented on June 14, 2024

This seems to be the same issue as: #7327, #8240, #7309 (see #6646 (comment) for an explanation).

See also #9093 (comment), could be the same issue you are facing

from pydantic.

sydney-runkle avatar sydney-runkle commented on June 14, 2024

Closing as a duplicate, based on the issues that @Viicos mentioned above. Thanks!

from pydantic.

jrkarnes avatar jrkarnes commented on June 14, 2024

@Viicos

I read through the source material you provided and I do agree that this is a duplicate; however, I'm having a hard time reconciling why having the Optional[] type surround the value of the property sharing the same name is what causes this in the current version of Pydantic. If the behavior of the Optional[] type is responsible for this presentation of the collision error, I would wonder if the root cause of Python's typing hints is actually the root cause.

Do you have any insight into why the name collision was perfectly fine without Optional[] as I showed in my addenda?

from pydantic.

Viicos avatar Viicos commented on June 14, 2024

Not sure, might need to double check, but I think this comes from what I described here: #8243 (comment).

I'll probably need to take a better look at your code example, but could you confirm this matches your use case?

from pydantic.

jrkarnes avatar jrkarnes commented on June 14, 2024

Since Optional[...] is shorthand for Union[..., None] I think that it does.

On this same train, now that Union types are a thing in Py3.12, the syntax of date: date | None = None from some of your other examples would probably also run into this issue

from pydantic.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.