bug fixes

This commit is contained in:
2021-06-01 09:14:03 +02:00
parent b44101b394
commit a57ef9879e
3 changed files with 32 additions and 15 deletions

View File

@ -81,12 +81,13 @@ class Basesnippet(Snippet):
subsnippets=list,
tags=list,
dashboardName=str,
files=str,
files=list,
location=str,
defaultOrder=int,
linkType=str,
versionable=bool,
deleted=bool)
self.snippetType = "basesnippet"
@ -94,6 +95,7 @@ class Paragraph(Basesnippet):
def __init__(self):
super().__init__()
self.set_properties(textcontent=str, isMessage=str)
self.snippetType = "paragraph"
if __name__ == "__main__":