From 737565f2f527f2a0210b7359c2ad4ca5b5c028a8 Mon Sep 17 00:00:00 2001 From: Ernesto Ruy Sanchez Date: Sun, 7 Oct 2018 09:44:58 -0700 Subject: [PATCH] added groupName and groupId on SheetWithContent __init__ method --- ulysses/calls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ulysses/calls.py b/ulysses/calls.py index 4665779..add72a8 100644 --- a/ulysses/calls.py +++ b/ulysses/calls.py @@ -465,7 +465,7 @@ class SheetWithContent(Sheet): notes -- list of strings representing notes in markdown """ - def __init__(self, title=None, type=None, # @ReservedAssignment + def __init__(self, title=None, type=None, groupName=None, groupId=None, identifier=None, hasLifetimeIdentifier=None, titleType=None, creationDate=None, modificationDate=None, changeToken=None, text=None, keywords=None, notes=None):