Skip to content

custom_helper

django_spire.contrib.seeding.field.seed.helper.custom_helper

CustomFieldSeedHelper

Bases: FieldSeedHelper

Source code in django_spire/contrib/seeding/field/seed/helper/helper.py
def __init__(self, locale: str | list[str] = 'en_CA') -> None:
    self.locale = locale

callable staticmethod

Source code in django_spire/contrib/seeding/field/seed/helper/custom_helper.py
@staticmethod
def callable(callable_: Callable, *args, **kwargs) -> CallableFieldSeed:
    return CallableFieldSeed(callable_, *args, **kwargs)