We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4eb1fee commit 3e9fe95Copy full SHA for 3e9fe95
script.py
@@ -1,8 +1,7 @@
1
-from edge_addons_api.client import Options, Client
2
-
3
import os
4
import sys
5
+from edge_addons_api.client import Client, Options
6
7
if len(sys.argv) < 3:
8
print("You must provide file_path and notes")
@@ -15,12 +14,9 @@
15
14
product_id=os.environ["EDGE_PRODUCT_ID"],
16
client_id=os.environ["EDGE_CLIENT_ID"],
17
client_secret=os.environ["EDGE_CLIENT_SECRET"],
18
- access_token_url=os.environ["EDGE_ACCESS_TOKEN_URL"]
+ access_token_url=os.environ["EDGE_ACCESS_TOKEN_URL"],
19
)
20
21
client = Client(options)
22
23
-client.submit(
24
- file_path=file_path,
25
- notes=notes
26
-)
+client.submit(file_path=file_path, notes=notes)
0 commit comments