Skip to content

Commit 3e26499

Browse files
committed
Pleasing Pylint
1 parent 5e6a36a commit 3e26499

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

image_preview_thumbnailer.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,8 @@ def artstation_download_img(match, config=PluginConfig()):
127127
return out_filepath
128128

129129
def behance_download_img(match, config=PluginConfig()):
130-
artwork_url = 'https://www.behance.net/v2/projects/{}?api_key=NdTKNWys9AdBhxMhXnKuxgfzmqvwkg55'.format(match.group(1)) # API key from https://github.com/djheru/js-behance-api
130+
# API key from https://github.com/djheru/js-behance-api
131+
artwork_url = 'https://www.behance.net/v2/projects/{}?api_key=NdTKNWys9AdBhxMhXnKuxgfzmqvwkg55'.format(match.group(1))
131132
resp = http_get(artwork_url, config)
132133
img_url = resp.json()['project']['covers']['404']
133134
out_filepath = download_img(img_url, config)

0 commit comments

Comments
 (0)