You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some of the methods such as name are defined as class attributes with leading underscore. This is a convention for private variables, but does not actually make the variable private. Consider using property decorator, https://www.geeksforgeeks.org/python-property-decorator-property/
The text was updated successfully, but these errors were encountered:
Some of the methods such as
name
are defined as class attributes with leading underscore. This is a convention for private variables, but does not actually make the variable private. Consider using property decorator, https://www.geeksforgeeks.org/python-property-decorator-property/The text was updated successfully, but these errors were encountered: