fix(django-apps): Place the bracket correctly

This commit is contained in:
Tom Hubrecht 2025-02-24 17:46:53 +01:00
parent 78f32c1b0a
commit 8e39d6bc1a
Signed by: thubrecht
SSH key fingerprint: SHA256:r+nK/SIcWlJ0zFZJGHtlAoRwq1Rm+WcKAm5ADYMoQPc

View file

@ -322,15 +322,15 @@ in
Extra services to run in parallel of the application.
May be used to run background tasks and/or workers.
'';
};
timers = mkOption {
type = attrs;
default = { };
description = ''
Extra oneshot services to run in parallel of the application.
Be aware that `startAt` should be included.
'';
};
timers = mkOption {
type = attrs;
default = { };
description = ''
Extra oneshot services to run in parallel of the application.
Be aware that `startAt` should be included.
'';
};
manageScript = mkOption {