diff --git a/README.md b/README.md index 787d64e..c0e0d33 100644 --- a/README.md +++ b/README.md @@ -761,7 +761,7 @@ First we can create an object that will hold the data we want for each item in t ```python class Fruit(GObject.Object): - name = GObject.Property(type=str) + name = GObject.Property(type=str, default="") def __init__(self, name): super().__init__() ```