From 2fc8f2d34613697cbf2c56e75ded57151f3ad7e9 Mon Sep 17 00:00:00 2001 From: adator <85586985+adator85@users.noreply.github.com> Date: Sun, 1 Sep 2024 13:14:51 +0200 Subject: [PATCH] Fix issue unexpected argument --- mods/mod_command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/mod_command.py b/mods/mod_command.py index 858fa1e..7baee47 100644 --- a/mods/mod_command.py +++ b/mods/mod_command.py @@ -97,7 +97,7 @@ class Command(): """ try: # Build the default configuration model (Mandatory) - self.ModConfig = self.ModConfModel(param_exemple1='param value 1', param_exemple2=1) + self.ModConfig = self.ModConfModel() # Sync the configuration with core configuration (Mandatory) self.Base.db_sync_core_config(self.module_name, self.ModConfig)