We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Now it's possible to assign any attribute to cake
from bakery import Cake cake = Cake(1) cake.is_one = True print(cake.is_one) # True
And if object within cake has attribute with the same name it can lead to errors. (maybe use __slots__ for all library classes?)
__slots__
The text was updated successfully, but these errors were encountered:
roma-frolov
No branches or pull requests
Now it's possible to assign any attribute to cake
And if object within cake has attribute with the same name it can lead to errors.
(maybe use
__slots__
for all library classes?)The text was updated successfully, but these errors were encountered: