Skip to content

Commit

Permalink
Ran task format
Browse files Browse the repository at this point in the history
Signed-off-by: Madia Wilder <[email protected]>
  • Loading branch information
Madia Wilder authored and mmwilder26 committed Jul 17, 2023
1 parent c61b9c2 commit 45de410
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions archivist_samples/sample_scripts/c2pa/c2pa_verify.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,7 @@ def honest_arch():
with open(client_secret_file, mode="r", encoding="utf-8") as tokenfile:
client_secret = tokenfile.read().strip()

arch = Archivist(
"https://app.rkvst.io", (client_id, client_secret), max_time=300
)
arch = Archivist("https://app.rkvst.io", (client_id, client_secret), max_time=300)

return arch

Expand All @@ -63,9 +61,7 @@ def evil_arch():
with open(client_secret_file, mode="r", encoding="utf-8") as tokenfile:
client_secret = tokenfile.read().strip()

arch = Archivist(
"https://app.rkvst.io", (client_id, client_secret), max_time=300
)
arch = Archivist("https://app.rkvst.io", (client_id, client_secret), max_time=300)

return arch

Expand Down

0 comments on commit 45de410

Please sign in to comment.