Giter Club home page Giter Club logo

Comments (2)

soamicharan avatar soamicharan commented on May 16, 2024

@ergleb78 BaseSettings inherits BaseModel and the core functionality of BaseModel is that if you inherit parent BaseModel, it will mutate child class and set attributes of parent class.

from pydantic import BaseSettings


class ConfigBase(BaseSettings):
    p1: str = None


class AppConfig(ConfigBase):
    p2: str = "AppConfig"


class AWSConfigBase(ConfigBase):
    p1: str = "AwsConfigBase"


class Config(AppConfig, AWSConfigBase):
    pass

# When you check AppConfig class attributes
print(AppConfig().__dict__)
>>> {'p1': None, 'p2': 'AppConfig'}

So if you go by MRO, so Config().p1 is search in AppConfig and yes, there is attribute p1 exists so it will return its value, None.

So this issue does not changes MRO, its the core functionality of pydantic BaseModel which adds the attributes to inherited classes.
@samuelcolvin please verify this.

from pydantic-settings.

hramezani avatar hramezani commented on May 16, 2024

As @soamicharan mentioned it is by design in pydantic. you can get different values by changing the

class Config(AppConfig, AWSConfigBase):

to

class Config(AWSConfigBase, AppConfig):

from pydantic-settings.

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.