Skip to content

Commit 3e9fe95

Browse files
committed
Fix lint
1 parent 4eb1fee commit 3e9fe95

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

script.py

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
from edge_addons_api.client import Options, Client
2-
31
import os
42
import sys
53

4+
from edge_addons_api.client import Client, Options
65

76
if len(sys.argv) < 3:
87
print("You must provide file_path and notes")
@@ -15,12 +14,9 @@
1514
product_id=os.environ["EDGE_PRODUCT_ID"],
1615
client_id=os.environ["EDGE_CLIENT_ID"],
1716
client_secret=os.environ["EDGE_CLIENT_SECRET"],
18-
access_token_url=os.environ["EDGE_ACCESS_TOKEN_URL"]
17+
access_token_url=os.environ["EDGE_ACCESS_TOKEN_URL"],
1918
)
2019

2120
client = Client(options)
2221

23-
client.submit(
24-
file_path=file_path,
25-
notes=notes
26-
)
22+
client.submit(file_path=file_path, notes=notes)

0 commit comments

Comments
 (0)