Refactored sdp serializers

This commit is contained in:
2019-10-21 16:13:56 +02:00
parent 3f423454c8
commit 8f1c2ed818
13 changed files with 1353 additions and 13 deletions
+1
View File
@@ -13,6 +13,7 @@ class Concept:
self.pre = None # list of pre conditions before calling the main function
self.post = None # list of post conditions after calling the main function
self.main = None # main method
self.value = None # value of the concept
self.id = Concept.concepts_id
Concept.concepts_id = Concept.concepts_id + 1