mirror of
https://github.com/PokeAPI/pokeapi
synced 2024-11-22 11:23:13 +00:00
Merge pull request #745 from PokeAPI/staging
This commit is contained in:
commit
a82763a235
1 changed files with 6 additions and 2 deletions
|
@ -30,7 +30,9 @@ DB_CURSOR = connection.cursor()
|
|||
DB_VENDOR = connection.vendor
|
||||
|
||||
|
||||
MEDIA_DIR = "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/{0}"
|
||||
MEDIA_DIR = "{prefix}{{file_name}}".format(
|
||||
prefix=os.environ.get("POKEAPI_SPRITES_PREFIX", "/media/sprites/")
|
||||
)
|
||||
IMAGE_DIR = os.getcwd() + "/data/v2/sprites/sprites/"
|
||||
RESOURCE_IMAGES = []
|
||||
|
||||
|
@ -42,7 +44,9 @@ for root, dirs, files in os.walk(IMAGE_DIR):
|
|||
|
||||
|
||||
def file_path_or_none(file_name):
|
||||
return MEDIA_DIR.format(file_name) if file_name in RESOURCE_IMAGES else None
|
||||
return (
|
||||
MEDIA_DIR.format(file_name=file_name) if file_name in RESOURCE_IMAGES else None
|
||||
)
|
||||
|
||||
|
||||
def with_iter(context, iterable=None):
|
||||
|
|
Loading…
Reference in a new issue