Skip to content

static_seed

django_spire.contrib.seeding.field.seed.static_seed

StaticFieldSeed

Bases: BaseFieldSeed

Source code in django_spire/contrib/seeding/field/seed/static_seed.py
def __init__(self, value: Any) -> None:
    self.value = value

value = value instance-attribute

generate_value

Source code in django_spire/contrib/seeding/field/seed/static_seed.py
def generate_value(self, seed_index: int) -> Any:
    _ = seed_index

    return self.value