don't use kwargs for overrides parameter

This commit is contained in:
holger krekel
2024-07-10 12:12:18 +02:00
parent 920e062293
commit a7ef6ee35b
3 changed files with 3 additions and 3 deletions

View File

@@ -38,7 +38,7 @@ def init_cmd(args, out):
if args.inipath.exists():
print(f"Path exists, not modifying: {args.inipath}")
else:
write_initial_config(args.inipath, mail_domain)
write_initial_config(args.inipath, mail_domain, overrides={})
out.green(f"created config file for {mail_domain} in {args.inipath}")