Skip to content

Commit

Permalink
Deleted print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
mexi-cano committed Nov 6, 2024
1 parent db5324f commit 1078de0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion integrations/services/communications/message.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ def _email_body(self):

def text(self, cell: str, send_tests=False):
if not self.should_send() and not send_tests:
print("should not sent is true. returning")
return

self._cell_client().messages.create(
Expand Down
2 changes: 1 addition & 1 deletion integrations/services/sheets/sheets.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


class GoogleSheets:
info = json.loads(config("GOOGLE_APPLICATION_CREDENTIALS"))
info = json.loads(config("GOOGLE_APPLICATION_CREDENTIALS").encode("unicode_escape"))
creds = service_account.Credentials.from_service_account_info(info)
service = build("sheets", "v4", credentials=creds)
sheet = service.spreadsheets()
Expand Down

0 comments on commit 1078de0

Please sign in to comment.