Skip to content

Commit 38db754

Browse files
committed
Version 0.06
1 parent 7a8ec21 commit 38db754

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

delete_webhook.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77

88
while True:
99
url = input("Enter the URL of the webhook to delete: ")
10-
print('Deleting Webhook')
1110
if not re.match(url_pattern, url):
1211
os.system('cls' if os.name == 'nt' else 'clear')
1312
print("Not a valid URL. Please enter a valid URL.")
1413
url = None
1514
continue
1615

16+
print('Deleting Webhook')
1717
response = requests.get(url)
1818
if response.status_code == requests.codes.ok:
1919
webhook_info = response.json()

0 commit comments

Comments
 (0)