This commit is contained in:
indyandie 2024-03-04 03:07:09 -06:00
parent 2b794c0ec6
commit c7c2c46f49
No known key found for this signature in database
GPG key ID: FDB83C1AED3933E1

View file

@ -723,12 +723,12 @@ class PokemonResource(PokeapiCommonViewset):
@extend_schema(
description='A Pokémon Species forms the basis for at least one Pokémon. Attributes of a Pokémon species are shared across all varieties of Pokémon within the species. A good example is Wormadam; Wormadam is the species which can be found in three different varieties, Wormadam-Trash, Wormadam-Sandy and Wormadam-Plant.',
summary='Get pokemon spec',
summary='Get pokemon species',
tags=[ 'pokemon' ],
)
@extend_schema_view(
list=extend_schema(
summary='List pokemon specs',
summary='List pokemon species',
)
)
class PokemonSpeciesResource(PokeapiCommonViewset):