Merge pull request #330 from ckkbupt/patch-1

Update p06_create_managed_attributes.rst
This commit is contained in:
XiongNeng
2022-02-01 12:07:54 +08:00
committed by GitHub

View File

@@ -17,7 +17,7 @@
class Person:
def __init__(self, first_name):
self._first_name = first_name
self.first_name = first_name
# Getter function
@property