Skip to content

Commit 1183374

Browse files
Ivan KamkinIvan Kamkin
authored andcommitted
Reformat
1 parent 46326b5 commit 1183374

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

snippets/manual_fetch_token.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ def main():
88
base_url = "https://id.aspose.cloud/"
99
endpoint = "connect/token"
1010

11-
#Check the client_id is changed to not break github ci pipeline
11+
# Check the client_id is changed to not break github ci pipeline
1212
if client_id.startswith("Client Id"):
1313
print("client_id not configured. Skip this snippet test")
1414
return
15-
15+
1616
payload = {"grant_type": "client_credentials", "client_id": client_id, "client_secret": client_secret}
1717

1818
response = requests.post(f"{base_url}{endpoint}", data=payload)

0 commit comments

Comments
 (0)