kiwiz / gkeepapi

An unofficial client for the Google Keep API.
MIT License
1.52k stars 112 forks source link

Add something to list, not note. #104

Closed SsNiPeR1 closed 3 years ago

SsNiPeR1 commented 3 years ago

Please make sure you've done the following before submitting your issue:

Additionally, please provide the following information:

hmcty commented 3 years ago

Taken from the "Setting List content" section of the documentation:

# Create a checked item
glist.add('Item 2', True)

# Create an item at the top of the list
glist.add('Item 1', True, gkeepapi.node.NewListItemPlacementValue.Top)

# Create an item at the bottom of the list
glist.add('Item 3', True, gkeepapi.node.NewListItemPlacementValue.Bottom)
hmcty commented 3 years ago

@kiwiz Can we close this issue?

kiwiz commented 3 years ago

Oh yup, thanks for addressing it.