E7T26CXCBT75KWEXNB5IKANGQNAPTQD6NRP3ZIXAC6OU3SLHHTEAC django-admin test --settings $TESTING_DJANGO_SETTINGS_MODULE --keepdb $@
# lazy load functions defined in dotfiles/zsh/functionsmy_funcs=$HOME/dotfiles/zsh/functionsfpath=($my_funcs $fpath)for func in $(ls $my_funcs); do autoload $func; done;
function () {# anonymous functions are evaluated without being called# # so we're just using this to scope our variables# lazy load functions defined in dotfiles/zsh/functionslocal fns=$HOME/dotfiles/zsh/functionslocal sure=$HOME/dotfiles/zsh/surefpath=($sure $fns $fpath)for fn in $(ls $fns); do autoload $fn; done;[[ -d $sure ]] && for fn in $(ls $sure); do autoload $fn; done;}
PATH=$HOME/.poetry/bin:$PATH