Skip to content

Commit

Permalink
Fix pycodestyle issue
Browse files Browse the repository at this point in the history
  • Loading branch information
nnayk committed Dec 8, 2023
1 parent ecec5d8 commit 1792c41
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Backend/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ def store_image():
image_res = requests.post(
"https://api.imgur.com/3/image",
data={"image": data["url"]},
headers={"Authorization": "Client-ID " + os.environ["IMGUR_CLIENT_ID"]},
headers={"Authorization": "Client-ID "
+ os.environ["IMGUR_CLIENT_ID"]},
)

# Prepare the data for creating an image
Expand Down

0 comments on commit 1792c41

Please sign in to comment.