Skip to content

Commit

Permalink
feat: config nodes and oauth2
Browse files Browse the repository at this point in the history
  • Loading branch information
gg authored and cowan-macady committed Dec 9, 2022
1 parent 0d90b42 commit 5c3147f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
7 changes: 3 additions & 4 deletions jarvis_sdk/model/email.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ def __init__(self, address, name):
self.name = name

def __str__(self):
return (
"Address: " + self.address + "\n"
"Name: " + self.name
)
return (f"Address: {self.address} \n "
f"Name: {self.name} \n"
)
10 changes: 5 additions & 5 deletions jarvis_sdk/model/email_attachment.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ def __init__(self, content_type, content_id, inline, file_name, content):

def __str__(self):
return (
"Content type: " + self.content_type + "\n"
"Content id: " + self.content_id + "\n"
"Inline: " + self.inline + "\n"
"FileName: " + self.file_name + "\n"
"Content: " + self.content + "\n"
f"Content type: {self.content_type} \n"
f"Content id: {self.content_id} \n"
f"Inline: {self.inline} \n"
f"FileName: {self.file_name} \n"
f"Content: {self.content} \n"
)

0 comments on commit 5c3147f

Please sign in to comment.