Example #1
0
 def deserialize_notes(self, string):
     board_export = self.string_to_array(string)
     notes_export = board_export['notes']
     notes = []
     for note_export in notes_export:
         note = Note()
         note.from_export(note_export)
         notes.append(note)
     return notes