This commit is contained in:
SowinskiBraeden committed 2022-11-07 08:56:13 -08:00
1 parent 37b961745d
commit 086b1db518
6 files changed
+150 -36

No files matched your search

+7
View File
@@ -17,3 +17,10 @@ class Error:
def __init__(self, title: str, description: str):
self.Title = title
self.Description = description
# return dict version of self
def toDict(self) -> dict:
return {
"Title": self.Title,
"Description": self.Description
}