Skip to content

Commit

Permalink
fixed Trailing Newlines (C0305) and Missing Module Docstring (C0114) …
Browse files Browse the repository at this point in the history
…issue
  • Loading branch information
itsmitul9 committed May 14, 2024
1 parent 05321bd commit 25dcdbe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions main.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
from json import dumps
"""
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'
Expand All @@ -18,7 +20,5 @@ def main():
)
print(response)


if __name__ == '__main__':
main()

0 comments on commit 25dcdbe

Please sign in to comment.