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

Why does the code not work for magicattr_start.py when specifying an else clause for __setattr__ #9

Open
jeffl24 opened this issue Apr 8, 2024 · 0 comments

Comments

@jeffl24
Copy link

jeffl24 commented Apr 8, 2024

Issue Overview

For the file magicattr_start.py, you used the code:
`

def __setattr__(self, name, value):
    if name == 'price':
        if type(value) is not float:
            raise ValueError(
                "The price attribute must be a float data type")
    return super().__setattr__(name, value)

`

I tried to add an else clause right before the final return statement, to make my code more explicit:

`

def __setattr__(self, name, value):
    if name == 'price':
        if type(value) is not float:
            raise ValueError(
                "The price attribute must be a float data type")
    else: 
        return super().__setattr__(name, value) 

`
However this throws an error: "AttributeError: 'Book' object has no attribute 'price'".

I tried searching on stackoverflow and using ChatGPT to find out what is the reason behind this, but to no avail.

Could you please help? Thank you!

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

1 participant