Skip to content

Commit

Permalink
fix json-lint
Browse files Browse the repository at this point in the history
  • Loading branch information
itsmitul9 committed May 15, 2024
1 parent ecf5d16 commit 518beb3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
"""
This is a Python script that generates notification using google webhook.
This is a Python script that generates notification using Google webhook.
"""

from json import dumps
from httplib2 import Http

def main():
"""Hangouts Chat incoming webhook quickstart."""
url = 'put your google chat space url here'
url = 'put your Google Chat space URL here'
# Constructing the card content
card_content = {
"cards": [
Expand Down Expand Up @@ -58,7 +58,7 @@ def main():
headers=message_headers,
body=dumps(card_content),
)
print(response)
print (response)

if __name__ == '__main__':
main()

0 comments on commit 518beb3

Please sign in to comment.